dbertoni 2003/02/22 12:07:41
Modified: c/src/XSLT VariablesStack.cpp VariablesStack.hpp
Log:
Fixed const glitch.
Revision Changes Path
1.26 +2 -2 xml-xalan/c/src/XSLT/VariablesStack.cpp
Index: VariablesStack.cpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/XSLT/VariablesStack.cpp,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- VariablesStack.cpp 25 Nov 2002 18:11:53 -0000 1.25
+++ VariablesStack.cpp 22 Feb 2003 20:07:41 -0000 1.26
@@ -244,8 +244,8 @@
-const void
-VariablesStack::PushParamFunctor::operator()(const
VariablesStack::ParamsVectorType::value_type& theEntry)
+void
+VariablesStack::PushParamFunctor::operator()(const
VariablesStack::ParamsVectorType::value_type& theEntry) const
{
assert(theEntry.m_qname != 0);
1.19 +2 -2 xml-xalan/c/src/XSLT/VariablesStack.hpp
Index: VariablesStack.hpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/XSLT/VariablesStack.hpp,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- VariablesStack.hpp 25 Nov 2002 18:11:53 -0000 1.18
+++ VariablesStack.hpp 22 Feb 2003 20:07:41 -0000 1.19
@@ -352,8 +352,8 @@
{
}
- const void
- operator()(const ParamsVectorType::value_type& theEntry);
+ void
+ operator()(const ParamsVectorType::value_type& theEntry) const;
private:
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]