$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r85459 - trunk/boost/log/utility/setup
From: andrey.semashev_at_[hidden]
Date: 2013-08-25 08:37:11
Author: andysem
Date: 2013-08-25 08:37:11 EDT (Sun, 25 Aug 2013)
New Revision: 85459
URL: http://svn.boost.org/trac/boost/changeset/85459
Log:
Fixed has_parameter compilation.
Text files modified: 
   trunk/boost/log/utility/setup/settings.hpp |     2 +-                                      
   1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/boost/log/utility/setup/settings.hpp
==============================================================================
--- trunk/boost/log/utility/setup/settings.hpp	Sun Aug 25 08:36:51 2013	(r85458)
+++ trunk/boost/log/utility/setup/settings.hpp	2013-08-25 08:37:11 EDT (Sun, 25 Aug 2013)	(r85459)
@@ -506,7 +506,7 @@
     {
         if (m_ptree)
         {
-            optional< property_tree_type const& > section = m_ptree->get_child_optional(section_name);
+            optional< property_tree_type& > section = m_ptree->get_child_optional(section_name);
             if (!!section)
                 return (section->find(param_name) != section->not_found());
         }