Changeset 5940
- Timestamp:
- Oct 14, 2009, 11:33:13 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/libraries/core/MemoryArchive.cc
r5929 r5940 33 33 #include <OgreException.h> 34 34 #include <boost/filesystem.hpp> 35 #include <boost/version.hpp> 36 37 // Boost 1.36 has some issues with deprecated functions that have been omitted 38 #if (BOOST_VERSION == 103600) 39 # define BOOST_HAS_BRANCH_PATH_FUNCTION has_parent_path 40 #else 41 # define BOOST_HAS_BRANCH_PATH_FUNCTION has_branch_path 42 #endif 35 43 36 44 namespace orxonox … … 71 79 if (file.empty()) 72 80 continue; 73 if (file. has_branch_path() && !bRecursive)81 if (file.BOOST_HAS_BRANCH_PATH_FUNCTION() && !bRecursive) 74 82 continue; 75 83 if (simpleList)
Note: See TracChangeset
for help on using the changeset viewer.