summaryrefslogtreecommitdiff
path: root/boost/parameter/aux_/as_lvalue.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/parameter/aux_/as_lvalue.hpp')
-rw-r--r--boost/parameter/aux_/as_lvalue.hpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/boost/parameter/aux_/as_lvalue.hpp b/boost/parameter/aux_/as_lvalue.hpp
new file mode 100644
index 0000000000..d50b89778e
--- /dev/null
+++ b/boost/parameter/aux_/as_lvalue.hpp
@@ -0,0 +1,25 @@
+// Copyright Daniel Wallin 2006.
+// Distributed under 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 BOOST_PARAMETER_AUX_AS_LVALUE_HPP
+#define BOOST_PARAMETER_AUX_AS_LVALUE_HPP
+
+namespace boost { namespace parameter { namespace aux {
+
+ template <typename T>
+ T const& as_lvalue(T const& value)
+ {
+ return value;
+ }
+
+ template <typename T>
+ T& as_lvalue(T& value)
+ {
+ return value;
+ }
+}}} // namespace boost::parameter::aux
+
+#endif // include guard
+