Update of /cvsroot/boost/boost/boost/wave
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv25038/boost/wave

Modified Files:
        cpp_context.hpp 
Log Message:
Wave: Updated docs, added const specifiers.

Index: cpp_context.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/wave/cpp_context.hpp,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -d -r1.34 -r1.35
--- cpp_context.hpp     11 Mar 2007 17:23:44 -0000      1.34
+++ cpp_context.hpp     20 Mar 2007 19:19:15 -0000      1.35
@@ -193,11 +193,12 @@
         { return macros.add_macro(name, has_params, parameters, definition, 
             is_predefined); }
     template <typename StringT>
-    bool is_defined_macro(StringT const &str) 
+    bool is_defined_macro(StringT const &str) const
         { return macros.is_defined(str); }
     bool get_macro_definition(typename token_type::string_type const &name, 
             bool &has_params, bool &is_predefined, position_type &pos,
-            std::vector<token_type> &parameters, token_sequence_type 
&definition)
+            std::vector<token_type> &parameters, 
+            token_sequence_type &definition) const
         { 
             return macros.get_macro(name, has_params, is_predefined, pos,
                 parameters, definition); 
@@ -269,7 +270,7 @@
     }
     
     template <typename IteratorT2>
-    bool is_defined_macro(IteratorT2 const &begin, IteratorT2 const &end) 
+    bool is_defined_macro(IteratorT2 const &begin, IteratorT2 const &end) const
         { return macros.is_defined(begin, end); }
 
 // maintain include paths (helper functions)


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to