Compile fix

This commit is contained in:
Robert Osfield
2005-04-29 11:22:15 +00:00
parent f2d696f871
commit 7781be9cc9
2 changed files with 4 additions and 4 deletions

View File

@@ -626,8 +626,8 @@ namespace osgIntrospection
switch (_i)
{
case 0: ctr.first = variant_cast<const typename T::first_Type& >(v); break;
case 1: ctr.second = variant_cast<const typename T::second_Type& >(v); break;
case 0: ctr.first = variant_cast<const typename T::first_type& >(v); break;
case 1: ctr.second = variant_cast<const typename T::second_type& >(v); break;
}
}

View File

@@ -11,8 +11,8 @@
* OpenSceneGraph Public License for more details.
*/
//osgIntrospection - Copyright (C) 2005 Marco Jez
#ifndef OSGINTROSPECTION__type
#define OSGINTROSPECTION__type
#ifndef OSGINTROSPECTION_TYPE
#define OSGINTROSPECTION_TYPE
#include <osgIntrospection/Export>
#include <osgIntrospection/Exceptions>