$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r80524 - trunk/boost/pending
From: jewillco_at_[hidden]
Date: 2012-09-14 14:04:02
Author: jewillco
Date: 2012-09-14 14:04:00 EDT (Fri, 14 Sep 2012)
New Revision: 80524
URL: http://svn.boost.org/trac/boost/changeset/80524
Log:
Added void as default value of lookup_one_property_internal::type for "not found"; refs #7378
Text files modified: 
   trunk/boost/pending/property.hpp |     2 +-                                      
   1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/boost/pending/property.hpp
==============================================================================
--- trunk/boost/pending/property.hpp	(original)
+++ trunk/boost/pending/property.hpp	2012-09-14 14:04:00 EDT (Fri, 14 Sep 2012)
@@ -55,7 +55,7 @@
 
   // Code to look up one property in a property list:
   template <typename PList, typename PropName, typename Enable = void>
-  struct lookup_one_property_internal {BOOST_STATIC_CONSTANT(bool, found = false);};
+  struct lookup_one_property_internal {BOOST_STATIC_CONSTANT(bool, found = false); typedef void type;};
 
   // Special-case properties (vertex_all, edge_all, graph_all)
 #define BGL_ALL_PROP(tag) \