|
From: <br...@us...> - 2009-05-25 20:07:04
|
Revision: 3909
http://openvrml.svn.sourceforge.net/openvrml/?rev=3909&view=rev
Author: braden
Date: 2009-05-25 20:06:55 +0000 (Mon, 25 May 2009)
Log Message:
-----------
The Microsoft compiler doesn't like "using openvrml::node" here for some reason.
Modified Paths:
--------------
trunk/ChangeLog
trunk/src/node/vrml97/lod.cpp
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2009-05-13 04:22:22 UTC (rev 3908)
+++ trunk/ChangeLog 2009-05-25 20:06:55 UTC (rev 3909)
@@ -1,3 +1,10 @@
+2009-05-25 Braden McDaniel <br...@en...>
+
+ * src/node/vrml97/lod.cpp
+ (lod_node::do_render_child(openvrml::viewer &, const
+ openvrml::rendering_context)): The Microsoft compiler doesn't like
+ "using openvrml::node" here for some reason.
+
2009-05-13 Braden McDaniel <br...@en...>
* src/openvrml-player/curlbrowserhost.cpp
Modified: trunk/src/node/vrml97/lod.cpp
===================================================================
--- trunk/src/node/vrml97/lod.cpp 2009-05-13 04:22:22 UTC (rev 3908)
+++ trunk/src/node/vrml97/lod.cpp 2009-05-25 20:06:55 UTC (rev 3909)
@@ -138,7 +138,6 @@
using openvrml::mat4f;
using openvrml::vec3f;
using openvrml::make_vec3f;
- using openvrml::node;
using boost::intrusive_ptr;
using std::vector;
@@ -165,7 +164,7 @@
i = this->children_.value().size() - 1;
}
- vector<intrusive_ptr<node> > current_child(1);
+ vector<intrusive_ptr<openvrml::node> > current_child(1);
current_child[0] = this->children_.value()[i];
this->current_children_.value(current_child);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|