|
From: <den...@us...> - 2010-12-01 07:44:39
|
Revision: 165
http://dsim.svn.sourceforge.net/dsim/?rev=165&view=rev
Author: denis_arnaud
Date: 2010-12-01 07:44:33 +0000 (Wed, 01 Dec 2010)
Log Message:
-----------
[Test-Boost] Fixed the Boost.Filesystem compilation error for version lower than 1.44.
Modified Paths:
--------------
trunk/dsim/test/boost/filesystem/wide_test.cpp
Modified: trunk/dsim/test/boost/filesystem/wide_test.cpp
===================================================================
--- trunk/dsim/test/boost/filesystem/wide_test.cpp 2010-11-30 21:29:54 UTC (rev 164)
+++ trunk/dsim/test/boost/filesystem/wide_test.cpp 2010-12-01 07:44:33 UTC (rev 165)
@@ -13,9 +13,11 @@
#ifndef BOOST_FILESYSTEM_NO_DEPRECATED
# define BOOST_FILESYSTEM_NO_DEPRECATED
#endif
+#if defined(BOOST_VERSION) && BOOST_VERSION >= 104400
#ifndef BOOST_SYSTEM_NO_DEPRECATED
# define BOOST_SYSTEM_NO_DEPRECATED
-#endif
+#endif // BOOST_SYSTEM_NO_DEPRECATED
+#endif // BOOST_VERSION
#include <boost/filesystem/config.hpp>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|