From Mike Wittman, "The template-argument-list errors look to be due to a lack of spaces in the typeof macro. Here's a new Reflection header which should fix those problems. For consistency I think that's the best solution."

This commit is contained in:
Robert Osfield
2007-02-15 15:03:30 +00:00
parent 272ab99767
commit 3e6a91c079

View File

@@ -25,7 +25,7 @@
/// This macro emulates the behavior of the standard typeid operator,
/// returning the Type object associated to the type of the given
/// expression.
#define typeof(type) osgIntrospection::Reflection::getType(extended_typeid<type>())
#define typeof(type) osgIntrospection::Reflection::getType(extended_typeid< type >())
namespace osgIntrospection
{