summaryrefslogtreecommitdiff
path: root/boost/proto/context/default.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/proto/context/default.hpp')
-rw-r--r--boost/proto/context/default.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/boost/proto/context/default.hpp b/boost/proto/context/default.hpp
index 5dd7e4e651..6aeb596289 100644
--- a/boost/proto/context/default.hpp
+++ b/boost/proto/context/default.hpp
@@ -366,7 +366,7 @@ namespace boost { namespace proto
BOOST_PROTO_USE_GET_POINTER();
typedef typename detail::classtypeof<function_type>::type class_type;
return (
- BOOST_PROTO_GET_POINTER(class_type, BOOST_PROTO_DEFAULT_EVAL(~, 1, expr)) ->*
+ BOOST_PROTO_GET_POINTER(class_type, (BOOST_PROTO_DEFAULT_EVAL(~, 1, expr))) ->*
BOOST_PROTO_DEFAULT_EVAL(~, 0, expr)
)();
}
@@ -376,7 +376,7 @@ namespace boost { namespace proto
BOOST_PROTO_USE_GET_POINTER();
typedef typename detail::classtypeof<function_type>::type class_type;
return (
- BOOST_PROTO_GET_POINTER(class_type, BOOST_PROTO_DEFAULT_EVAL(~, 1, expr)) ->*
+ BOOST_PROTO_GET_POINTER(class_type, (BOOST_PROTO_DEFAULT_EVAL(~, 1, expr))) ->*
BOOST_PROTO_DEFAULT_EVAL(~, 0, expr)
);
}