Update of /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31054/src/libopenvrml/openvrml
Modified Files:
vrml97node.cpp
Log Message:
Change self_t back to a typedef; rather than "using" the typedef from openvrml::node_impl_util::abstract_node<Derived>. gcc didn't identify self_t as a type when importing it with "using".
Index: vrml97node.cpp
===================================================================
RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml/vrml97node.cpp,v
retrieving revision 1.93
retrieving revision 1.94
diff -C2 -d -r1.93 -r1.94
*** vrml97node.cpp 20 Dec 2005 21:31:22 -0000 1.93
--- vrml97node.cpp 21 Dec 2005 04:12:29 -0000 1.94
***************
*** 1626,1630 ****
public virtual grouping_node {
protected:
! using abstract_node<Derived>::self_t;
class add_children_listener :
--- 1626,1630 ----
public virtual grouping_node {
protected:
! typedef Derived self_t;
class add_children_listener :
|