From f60330df31a73c1e3662360628d0f21fdb7a40c1 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Thu, 15 Feb 2007 09:17:03 +0000 Subject: [PATCH] Added extra spaces between <> template declarations --- include/osgIntrospection/ReflectionMacros | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/osgIntrospection/ReflectionMacros b/include/osgIntrospection/ReflectionMacros index 70a6244a5..644547921 100644 --- a/include/osgIntrospection/ReflectionMacros +++ b/include/osgIntrospection/ReflectionMacros @@ -204,14 +204,14 @@ struct BaseTypeConverters #define I_BaseType(x) \ { \ - addBaseType(typeof(x )); \ - BaseTypeConverters::value> btc; \ + addBaseType(typeof( x )); \ + BaseTypeConverters< x , reflected_type, osgIntrospection::is_polymorphic ::value > btc; \ } #define I_VirtualBaseType(x) \ { \ - addBaseType(typeof(x )); \ - BaseTypeConverters btc; \ + addBaseType(typeof( x )); \ + BaseTypeConverters< x, reflected_type, false > btc; \ } #define I_EnumLabel(x) addEnumLabel(x, #x, true);