From 3e6a91c0799f6aebb1be263bc891dfc003e41505 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Thu, 15 Feb 2007 15:03:30 +0000 Subject: [PATCH] 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." --- include/osgIntrospection/Reflection | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/osgIntrospection/Reflection b/include/osgIntrospection/Reflection index 23a6ac4b9..1025d9d4f 100644 --- a/include/osgIntrospection/Reflection +++ b/include/osgIntrospection/Reflection @@ -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()) +#define typeof(type) osgIntrospection::Reflection::getType(extended_typeid< type >()) namespace osgIntrospection {