dbertoni 01/06/07 07:54:56 Modified: c/samples/ThreadSafe ThreadSafe.cpp Log: Made globals pointers to const objects. Revision Changes Path 1.15 +3 -3 xml-xalan/c/samples/ThreadSafe/ThreadSafe.cpp Index: ThreadSafe.cpp =================================================================== RCS file: /home/cvs/xml-xalan/c/samples/ThreadSafe/ThreadSafe.cpp,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- ThreadSafe.cpp 2001/06/06 22:28:08 1.14 +++ ThreadSafe.cpp 2001/06/07 14:54:49 1.15 @@ -39,9 +39,9 @@ // Used to hold compiled stylesheet and XML source document. -XalanCompiledStylesheet* glbCompiledStylesheet = 0; -XalanParsedSource* glbParsedSource = 0; -int glbError = 0; +const XalanCompiledStylesheet* glbCompiledStylesheet = 0; +const XalanParsedSource* glbParsedSource = 0; +int glbError = 0; --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
