summaryrefslogtreecommitdiff
path: root/src/third_party/boost-1.56.0/boost/parameter/aux_/yesno.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/boost-1.56.0/boost/parameter/aux_/yesno.hpp')
-rwxr-xr-xsrc/third_party/boost-1.56.0/boost/parameter/aux_/yesno.hpp26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/third_party/boost-1.56.0/boost/parameter/aux_/yesno.hpp b/src/third_party/boost-1.56.0/boost/parameter/aux_/yesno.hpp
deleted file mode 100755
index 13fa545a683..00000000000
--- a/src/third_party/boost-1.56.0/boost/parameter/aux_/yesno.hpp
+++ /dev/null
@@ -1,26 +0,0 @@
-// Copyright Daniel Wallin, David Abrahams 2005. Use, modification and
-// distribution is subject to the Boost Software License, Version 1.0. (See
-// accompanying file LICENSE_1_0.txt or copy at
-// http://www.boost.org/LICENSE_1_0.txt)
-
-#ifndef YESNO_050328_HPP
-#define YESNO_050328_HPP
-
-#include <boost/mpl/bool.hpp>
-
-namespace boost { namespace parameter { namespace aux {
-
-// types used with the "sizeof trick" to capture the results of
-// overload resolution at compile-time.
-typedef char yes_tag;
-typedef char (&no_tag)[2];
-
-// mpl::true_ and mpl::false_ are not distinguishable by sizeof(),
-// so we pass them through these functions to get a type that is.
-yes_tag to_yesno(mpl::true_);
-no_tag to_yesno(mpl::false_);
-
-}}} // namespace boost::parameter::aux
-
-#endif // YESNO_050328_HPP
-