← Back to team overview

yade-dev team mailing list archive

[Branch ~yade-dev/yade/trunk] Rev 1732: Remove unnecessary inclusion of indexing_suite which breaks compilation for boost<1.34 (or someth...

 

------------------------------------------------------------
revno: 1732
committer: Václav Šmilauer <vaclav@flux>
branch nick: trunk
timestamp: Mon 2009-08-24 17:42:11 +0200
message:
  Remove unnecessary inclusion of indexing_suite which breaks compilation for boost<1.34 (or something like that).
modified:
  py/yadeWrapper/customConverters.cpp


--
lp:yade
https://code.launchpad.net/~yade-dev/yade/trunk

Your team Yade developers is subscribed to branch lp:yade.
To unsubscribe from this branch go to https://code.launchpad.net/~yade-dev/yade/trunk/+edit-subscription.
=== modified file 'py/yadeWrapper/customConverters.cpp'
--- py/yadeWrapper/customConverters.cpp	2009-08-23 15:50:47 +0000
+++ py/yadeWrapper/customConverters.cpp	2009-08-24 15:42:11 +0000
@@ -1,8 +1,15 @@
 // 2009 © Václav Šmilauer <eudoxos@xxxxxxxx>
 
+
+// this is not currently used, but can be enabled if needed
+// probably breaks compilation for older (like <=1.35 or so)
+// boost::python
+#if 0
+	#include<indexing_suite/container_suite.hpp>
+	#include<indexing_suite/vector.hpp>
+#endif
+
 #include<boost/python.hpp>
-#include<indexing_suite/container_suite.hpp>
-#include<indexing_suite/vector.hpp>
 #include<boost/python/class.hpp>
 #include<boost/python/module.hpp>
 #include<boost/foreach.hpp>