From 47c922b0e576d9119d8bec95ff761ac73e31e134 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Mon, 18 May 2009 10:28:14 +0000 Subject: [PATCH] Minor tweaks to avoid warnings when generating wrappers/doxygen documentation --- include/osg/Version | 10 +++++----- include/osgDB/Options | 4 ++-- include/osgDB/Registry | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) 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