← Back to team overview

yade-dev team mailing list archive

[svn] r1676 - trunk/core

 

Author: eudoxos
Date: 2009-02-21 15:12:20 +0100 (Sat, 21 Feb 2009)
New Revision: 1676

Modified:
   trunk/core/PhysicalActionContainer.hpp
Log:
Users willling to go with the slower PhysicalActionContainer can compile with scons CXXFLAGS=-DNO_BEX now to get the old behavior.


Modified: trunk/core/PhysicalActionContainer.hpp
===================================================================
--- trunk/core/PhysicalActionContainer.hpp	2009-02-21 13:51:28 UTC (rev 1675)
+++ trunk/core/PhysicalActionContainer.hpp	2009-02-21 14:12:20 UTC (rev 1676)
@@ -15,7 +15,9 @@
 #include<iostream>
 
 // experimental
-#define BEX_CONTAINER
+#ifndef NO_BEX
+#	define BEX_CONTAINER
+#endif
 
 #ifdef BEX_CONTAINER
 	#include<yade/core/BexContainer.hpp>