diff --git a/include/osg/Version b/include/osg/Version index 35ea800d8..07ad6e2d1 100644 --- a/include/osg/Version +++ b/include/osg/Version @@ -24,11 +24,11 @@ extern "C" { #define OPENSCENEGRAPH_PATCH_VERSION 5 #define OPENSCENEGRAPH_SOVERSION 60 -/** convinience macro that can be used to decide whether a feature is present or not i.e. - * #if OSG_MIN_VERSION_REQUIRED(2,9,5) - * your code here - * #endif - */ +/* convinience macro that can be used to decide whether a feature is present or not i.e. + * #if OSG_MIN_VERSION_REQUIRED(2,9,5) + * your code here + * #endif + */ #define OSG_MIN_VERSION_REQUIRED(MAJOR, MINOR, PATCH) ((OPENSCENEGRAPH_MAJOR_VERSION>MAJOR) || (OPENSCENEGRAPH_MAJOR_VERSION==MAJOR && (OPENSCENEGRAPH_MINOR_VERSION>MINOR || (OPENSCENEGRAPH_MINOR_VERSION==MINOR && OPENSCENEGRAPH_PATCH_VERSION>=PATCH)))) #define OSG_VERSION_LESS_THAN(MAJOR, MINOR, PATCH) ((OPENSCENEGRAPH_MAJOR_VERSION