Update of /cvsroot/plib/plib/src/pui
In directory usw-pr-cvs1:/tmp/cvs-serv18867
Modified Files:
puValue.cxx
Log Message:
Made skip_whitespace routine 'static'
Index: puValue.cxx
===================================================================
RCS file: /cvsroot/plib/plib/src/pui/puValue.cxx,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -d -r1.22 -r1.23
--- puValue.cxx 2 Sep 2002 06:05:46 -0000 1.22
+++ puValue.cxx 15 Sep 2002 00:56:38 -0000 1.23
@@ -27,7 +27,7 @@
UL_RTTI_DEF(puValue)
-inline void skip_whitespace ( const char **str )
+static inline void skip_whitespace ( const char **str )
{
while ( isspace ( **str ) != 0 )
(*str)++ ;
|