Changeset 7169 for code/trunk
- Timestamp:
- Aug 17, 2010, 1:13:52 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/libraries/core/CorePrereqs.h
r6536 r7169 37 37 38 38 #include "OrxonoxConfig.h" 39 #include <boost/version.hpp> 39 40 40 41 //----------------------------------------------------------------------- … … 244 245 namespace boost 245 246 { 247 #if (BOOST_VERSION < 104400) 246 248 namespace filesystem 247 249 { … … 250 252 typedef basic_path<std::string, path_traits> path; 251 253 } 254 #else 255 namespace filesystem2 256 { 257 struct path_traits; 258 template <class String, class Traits> class basic_path; 259 typedef basic_path<std::string, path_traits> path; 260 } 261 namespace filesystem 262 { 263 using filesystem2::basic_path; 264 using filesystem2::path_traits; 265 using filesystem2::path; 266 } 267 #endif 252 268 class thread; 253 269 class mutex;
Note: See TracChangeset
for help on using the changeset viewer.