$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r57559 - trunk/boost/pending
From: jewillco_at_[hidden]
Date: 2009-11-10 21:57:44
Author: jewillco
Date: 2009-11-10 21:57:44 EST (Tue, 10 Nov 2009)
New Revision: 57559
URL: http://svn.boost.org/trac/boost/changeset/57559
Log:
Fixed warnings
Text files modified: 
   trunk/boost/pending/property.hpp           |     2 +-                                      
   trunk/boost/pending/property_serialize.hpp |     2 +-                                      
   2 files changed, 2 insertions(+), 2 deletions(-)
Modified: trunk/boost/pending/property.hpp
==============================================================================
--- trunk/boost/pending/property.hpp	(original)
+++ trunk/boost/pending/property.hpp	2009-11-10 21:57:44 EST (Tue, 10 Nov 2009)
@@ -77,7 +77,7 @@
 
   template <class Tag2>
   inline detail::error_property_not_found
-  get_property_value(const no_property& p, Tag2) {
+  get_property_value(const no_property&, Tag2) {
     return detail::error_property_not_found();
   }
 
Modified: trunk/boost/pending/property_serialize.hpp
==============================================================================
--- trunk/boost/pending/property_serialize.hpp	(original)
+++ trunk/boost/pending/property_serialize.hpp	2009-11-10 21:57:44 EST (Tue, 10 Nov 2009)
@@ -22,7 +22,7 @@
   template<class Archive, class Tag, class T, class Base>
   void 
   serialize(Archive& ar, property<Tag, T, Base>& prop, 
-            const unsigned int version) 
+            const unsigned int /*version*/) 
   {
     ar & serialization::make_nvp( "property_base" , boost::serialization::base_object<Base>(prop) );
     ar & serialization::make_nvp( "property_value" , prop.m_value );