$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: mariano.consoni_at_[hidden]
Date: 2007-08-17 13:01:22
Author: mconsoni
Date: 2007-08-17 13:01:21 EDT (Fri, 17 Aug 2007)
New Revision: 38743
URL: http://svn.boost.org/trac/boost/changeset/38743
Log:
- Made it fit in 80 cols.
- Replaced TABs with 8 spaces.
- Improved comments.
Text files modified: 
   sandbox/boost/reflection/method_info.hpp   |     2 +-                                      
   sandbox/boost/reflection/parameter_map.hpp |     2 +-                                      
   sandbox/boost/reflection/reflection.hpp    |     9 +++++----                               
   3 files changed, 7 insertions(+), 6 deletions(-)
Modified: sandbox/boost/reflection/method_info.hpp
==============================================================================
--- sandbox/boost/reflection/method_info.hpp	(original)
+++ sandbox/boost/reflection/method_info.hpp	2007-08-17 13:01:21 EDT (Fri, 17 Aug 2007)
@@ -1,5 +1,5 @@
 /*
- * Boost.Reflection / first prototype - stored information for methods
+ * Boost.Reflection / method information storage
  *
  * (C) Copyright Mariano G. Consoni 2007
  * Distributed under the Boost Software License, Version 1.0. (See
Modified: sandbox/boost/reflection/parameter_map.hpp
==============================================================================
--- sandbox/boost/reflection/parameter_map.hpp	(original)
+++ sandbox/boost/reflection/parameter_map.hpp	2007-08-17 13:01:21 EDT (Fri, 17 Aug 2007)
@@ -1,5 +1,5 @@
 /*
- * Boost.Reflection / first prototype - paramater map for calls
+ * Boost.Reflection / paramater map (store parameter information for calls)
  *
  * (C) Copyright Mariano G. Consoni 2007
  * Distributed under the Boost Software License, Version 1.0. (See
Modified: sandbox/boost/reflection/reflection.hpp
==============================================================================
--- sandbox/boost/reflection/reflection.hpp	(original)
+++ sandbox/boost/reflection/reflection.hpp	2007-08-17 13:01:21 EDT (Fri, 17 Aug 2007)
@@ -1,5 +1,5 @@
 /*
- * Boost.Reflection / first prototype
+ * Boost.Reflection / main header
  *
  * (C) Copyright Mariano G. Consoni 2007
  * Distributed under the Boost Software License, Version 1.0. (See
@@ -11,7 +11,7 @@
 
 // TODO:
 //  . implement calls with parameter maps
-
+//  . fix FIXMEs
 
 #ifndef BOOST_EXTENSION_REFLECTION_HPP
 #define BOOST_EXTENSION_REFLECTION_HPP
@@ -275,7 +275,8 @@
 
         for(; it != methods_.end(); ++it) {
           method_container<MethodID, MethodReturnValue> *mc = 
-            dynamic_cast< method_container<MethodID, MethodReturnValue> *>(*it);
+            dynamic_cast< method_container<MethodID, 
+                        MethodReturnValue> *>(*it);
 
           if(mc == NULL) {
             // if the cast failed it means that this element of the list
@@ -435,7 +436,7 @@
         // iterate each parameter and search for it in the parameter map
       }
 
-      Info &get_info(void) const { return info_; }
+      Info &get_info(void) { return info_; }
 
     private:
       Info info_;