$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r54226 - trunk/boost/property_map
From: jewillco_at_[hidden]
Date: 2009-06-22 16:06:41
Author: jewillco
Date: 2009-06-22 16:06:41 EDT (Mon, 22 Jun 2009)
New Revision: 54226
URL: http://svn.boost.org/trac/boost/changeset/54226
Log:
Added default constructor; refs #3134
Text files modified:
trunk/boost/property_map/shared_array_property_map.hpp | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
Modified: trunk/boost/property_map/shared_array_property_map.hpp
==============================================================================
--- trunk/boost/property_map/shared_array_property_map.hpp (original)
+++ trunk/boost/property_map/shared_array_property_map.hpp 2009-06-22 16:06:41 EDT (Mon, 22 Jun 2009)
@@ -25,6 +25,8 @@
typedef T& reference;
typedef boost::lvalue_property_map_tag category;
+ inline shared_array_property_map(): data(), index() {}
+
explicit inline shared_array_property_map(
size_t n,
const IndexMap& _id = IndexMap())