Changeset 1359
- Timestamp:
- 02/18/08 17:10:15 (9 months ago)
- Files:
-
- 1 modified
-
trunk/src/openobjectlib/sg/appearance.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/openobjectlib/sg/appearance.cpp
r1347 r1359 10 10 #include <boost/filesystem/exception.hpp> 11 11 #include <boost/filesystem/operations.hpp> 12 #include <boost/version.hpp> 12 13 13 14 #include <openpluginlib/pl/GL_utility.hpp> … … 54 55 { 55 56 typedef opl::m_url::const_iterator const_iterator; 56 57 58 #if BOOST_VERSION > 103301 57 59 const_iterator I = std::find_if( m.begin( ), m.end( ), fs::exists<fs::path> ); 60 #else 61 const_iterator I = std::find_if( m.begin( ), m.end( ), fs::exists ); 62 #endif 63 58 64 if( I != m.end( ) ) 59 65 {
