diff options
author | Lorry Tar Creator <lorry-tar-importer@baserock.org> | 2015-04-08 03:09:47 +0000 |
---|---|---|
committer | <> | 2015-05-05 14:37:32 +0000 |
commit | f2541bb90af059680aa7036f315f052175999355 (patch) | |
tree | a5b214744b256f07e1dc2bd7273035a7808c659f /boost/foreach.hpp | |
parent | ed232fdd34968697a68783b3195b1da4226915b5 (diff) | |
download | boost-tarball-master.tar.gz |
Imported from /home/lorry/working-area/delta_boost-tarball/boost_1_58_0.tar.bz2.HEADboost_1_58_0master
Diffstat (limited to 'boost/foreach.hpp')
-rw-r--r-- | boost/foreach.hpp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/boost/foreach.hpp b/boost/foreach.hpp index ac2e6134d..eb3a50b65 100644 --- a/boost/foreach.hpp +++ b/boost/foreach.hpp @@ -398,10 +398,16 @@ struct foreach_reference // encode_type // template<typename T> -inline type2type<T> *encode_type(T &, boost::mpl::false_ *) { return 0; } +inline type2type<T> *encode_type(T &, boost::false_type*) { return 0; } template<typename T> -inline type2type<T, const_> *encode_type(T const &, boost::mpl::true_ *) { return 0; } +inline type2type<T, const_> *encode_type(T const &, boost::true_type*) { return 0; } + +template<typename T> +inline type2type<T> *encode_type(T &, boost::mpl::false_*) { return 0; } + +template<typename T> +inline type2type<T, const_> *encode_type(T const &, boost::mpl::true_*) { return 0; } /////////////////////////////////////////////////////////////////////////////// // set_false |