From Mike Wittman, support for reference parameters

This commit is contained in:
Robert Osfield
2007-02-13 09:33:35 +00:00
parent 3fbd958716
commit 264d69e0c9
3 changed files with 197 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#include <osgIntrospection/Reflector>
namespace osgIntrospection
{
template<>
void Reflector<void>::init_reference_types()
{
// Avoid trying to register void & / const void &, which are
// illegal types.
}
}