summaryrefslogtreecommitdiff
path: root/boost/fusion/container/generation/ignore.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/fusion/container/generation/ignore.hpp')
-rw-r--r--boost/fusion/container/generation/ignore.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/boost/fusion/container/generation/ignore.hpp b/boost/fusion/container/generation/ignore.hpp
index 0bebade465..15ce15d4a1 100644
--- a/boost/fusion/container/generation/ignore.hpp
+++ b/boost/fusion/container/generation/ignore.hpp
@@ -17,7 +17,7 @@ namespace boost { namespace fusion
struct swallow_assign
{
template<typename T>
- BOOST_FUSION_GPU_ENABLED
+ BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
swallow_assign const&
operator=(const T&) const
{
@@ -27,7 +27,7 @@ namespace boost { namespace fusion
}
// "ignore" allows tuple positions to be ignored when using "tie".
- detail::swallow_assign const ignore = detail::swallow_assign();
+ BOOST_CONSTEXPR detail::swallow_assign const ignore = detail::swallow_assign();
}}
#endif