Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r83203 - sandbox/type_erasure/boost/type_erasure
From: steven_at_[hidden]
Date: 2013-02-28 12:08:08


Author: steven_watanabe
Date: 2013-02-28 12:08:07 EST (Thu, 28 Feb 2013)
New Revision: 83203
URL: http://svn.boost.org/trac/boost/changeset/83203

Log:
Fix variadic implementation of constructible.
Text files modified:
   sandbox/type_erasure/boost/type_erasure/constructible.hpp | 6 +++---
   1 files changed, 3 insertions(+), 3 deletions(-)

Modified: sandbox/type_erasure/boost/type_erasure/constructible.hpp
==============================================================================
--- sandbox/type_erasure/boost/type_erasure/constructible.hpp (original)
+++ sandbox/type_erasure/boost/type_erasure/constructible.hpp 2013-02-28 12:08:07 EST (Thu, 28 Feb 2013)
@@ -70,15 +70,15 @@
 };
 
 /// INTERNAL ONLY
-template<class Base, class R, class... T, class Tag>
+template<class Base, class Tag, class... T>
 struct concept_interface<
- ::boost::type_erasure::constructible<R(T...)>,
+ ::boost::type_erasure::constructible<Tag(T...)>,
     Base,
     Tag
> : Base
 {
     using Base::_boost_type_erasure_deduce_constructor;
- ::boost::type_erasure::constructible<R(T...)>*
+ ::boost::type_erasure::constructible<Tag(T...)>*
     _boost_type_erasure_deduce_constructor(
         typename ::boost::type_erasure::as_param<Base, T>::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