Update of /cvsroot/openvrml/openvrml/doc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28449/doc
Modified Files:
Doxyfile
Log Message:
Made use of exception specifications a configure option.
Index: Doxyfile
===================================================================
RCS file: /cvsroot/openvrml/openvrml/doc/Doxyfile,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -d -r1.20 -r1.21
*** Doxyfile 23 Oct 2005 18:37:51 -0000 1.20
--- Doxyfile 12 Feb 2006 09:40:17 -0000 1.21
***************
*** 185,189 ****
ENABLE_PREPROCESSING = YES
MACRO_EXPANSION = YES
! EXPAND_ONLY_PREDEF = YES
SEARCH_INCLUDES = YES
INCLUDE_PATH =
--- 185,189 ----
ENABLE_PREPROCESSING = YES
MACRO_EXPANSION = YES
! EXPAND_ONLY_PREDEF = NO
SEARCH_INCLUDES = YES
INCLUDE_PATH =
***************
*** 192,196 ****
OPENVRML_API= \
OPENVRML_LOCAL= \
! OPENVRML_GL_CALLBACK_=
EXPAND_AS_DEFINED =
SKIP_FUNCTION_MACROS = YES
--- 192,202 ----
OPENVRML_API= \
OPENVRML_LOCAL= \
! OPENVRML_GL_CALLBACK_= \
! OPENVRML_NOTHROW="throw ()" \
! OPENVRML_THROW1(a)="throw (a)" \
! OPENVRML_THROW2(a,b)="throw (a, b)" \
! OPENVRML_THROW3(a,b,c)="throw (a, b, c)" \
! OPENVRML_THROW4(a,b,c,d)="throw (a, b, c, d)" \
! OPENVRML_THROW5(a,b,c,d,e)="throw (a, b, c, d, e)"
EXPAND_AS_DEFINED =
SKIP_FUNCTION_MACROS = YES
|