Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r56214 - trunk/boost/property_tree/detail
From: sebastian.redl_at_[hidden]
Date: 2009-09-15 08:29:53


Author: cornedbee
Date: 2009-09-15 08:29:52 EDT (Tue, 15 Sep 2009)
New Revision: 56214
URL: http://svn.boost.org/trac/boost/changeset/56214

Log:
More strict conformance fixes.
Text files modified:
   trunk/boost/property_tree/detail/ptree_implementation.hpp | 6 +++---
   1 files changed, 3 insertions(+), 3 deletions(-)

Modified: trunk/boost/property_tree/detail/ptree_implementation.hpp
==============================================================================
--- trunk/boost/property_tree/detail/ptree_implementation.hpp (original)
+++ trunk/boost/property_tree/detail/ptree_implementation.hpp 2009-09-15 08:29:52 EDT (Tue, 15 Sep 2009)
@@ -688,14 +688,14 @@
     basic_ptree<K, D, C>::get(const path_type &path,
                               Translator tr) const
     {
- return get_child(path).get_value<Type>(tr);
+ return get_child(path).BOOST_NESTED_TEMPLATE get_value<Type>(tr);
     }
 
     template<class K, class D, class C>
     template<class Type> inline
     Type basic_ptree<K, D, C>::get(const path_type &path) const
     {
- return get_child(path).get_value<Type>();
+ return get_child(path).BOOST_NESTED_TEMPLATE get_value<Type>();
     }
 
     template<class K, class D, class C>
@@ -757,7 +757,7 @@
                                                 const path_type &path) const
     {
         if (optional<const self_type&> child = get_child_optional(path))
- return child.get().get_value_optional<Type>();
+ return child.get().BOOST_NESTED_TEMPLATE get_value_optional<Type>();
         else
             return optional<Type>();
     }


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk