summaryrefslogtreecommitdiff
path: root/boost/hana/functional/curry.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/hana/functional/curry.hpp')
-rw-r--r--boost/hana/functional/curry.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/boost/hana/functional/curry.hpp b/boost/hana/functional/curry.hpp
index 74ec09459a..762718c208 100644
--- a/boost/hana/functional/curry.hpp
+++ b/boost/hana/functional/curry.hpp
@@ -111,13 +111,13 @@ BOOST_HANA_NAMESPACE_BEGIN
template <std::size_t n>
constexpr make_curry_t<n> curry{};
- namespace curry_detail {
+ namespace curry_detail { namespace {
template <std::size_t n>
constexpr make_curry_t<n> curry_or_call{};
template <>
constexpr auto curry_or_call<0> = apply;
- }
+ }}
template <std::size_t n, typename F>
struct curry_t {