|
From: <br...@us...> - 2009-06-23 03:33:11
|
Revision: 3927
http://openvrml.svn.sourceforge.net/openvrml/?rev=3927&view=rev
Author: braden
Date: 2009-06-23 03:32:50 +0000 (Tue, 23 Jun 2009)
Log Message:
-----------
Use Spirit Classic in the boost::spirit::classic namespace.
Modified Paths:
--------------
trunk/ChangeLog
trunk/examples/pretty_print.cpp
trunk/tests/parse_vrml97.cpp
trunk/tests/parse_x3dvrml.cpp
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2009-06-23 03:30:22 UTC (rev 3926)
+++ trunk/ChangeLog 2009-06-23 03:32:50 UTC (rev 3927)
@@ -1,5 +1,13 @@
2009-06-22 Braden McDaniel <br...@en...>
+ Use Spirit Classic in the boost::spirit::classic namespace.
+
+ * tests/parse_x3dvrml.cpp
+ * tests/parse_vrml97.cpp
+ * examples/pretty_print.cpp
+
+2009-06-22 Braden McDaniel <br...@en...>
+
* tests/browser.cpp: Current Boost no longer provides
<boost/thread.hpp>.
Modified: trunk/examples/pretty_print.cpp
===================================================================
--- trunk/examples/pretty_print.cpp 2009-06-23 03:30:22 UTC (rev 3926)
+++ trunk/examples/pretty_print.cpp 2009-06-23 03:32:50 UTC (rev 3927)
@@ -27,7 +27,7 @@
# include <fstream>
using namespace std;
-using namespace boost::spirit;
+using namespace boost::spirit::classic;
using namespace openvrml;
class indent;
Modified: trunk/tests/parse_vrml97.cpp
===================================================================
--- trunk/tests/parse_vrml97.cpp 2009-06-23 03:30:22 UTC (rev 3926)
+++ trunk/tests/parse_vrml97.cpp 2009-06-23 03:32:50 UTC (rev 3927)
@@ -21,7 +21,7 @@
# include <openvrml/vrml97_grammar.h>
using namespace std;
-using namespace boost::spirit;
+using namespace boost::spirit::classic;
using namespace openvrml;
int main(int argc, char * argv[])
Modified: trunk/tests/parse_x3dvrml.cpp
===================================================================
--- trunk/tests/parse_x3dvrml.cpp 2009-06-23 03:30:22 UTC (rev 3926)
+++ trunk/tests/parse_x3dvrml.cpp 2009-06-23 03:32:50 UTC (rev 3927)
@@ -21,7 +21,7 @@
# include <openvrml/x3d_vrml_grammar.h>
using namespace std;
-using namespace boost::spirit;
+using namespace boost::spirit::classic;
using namespace openvrml;
int main(int argc, char * argv[])
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|