Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion include/nonstd/scope.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,8 @@ namespace nonstd
#define scope_HAVE_IS_NOTHROW_ASSIGNABLE scope_CPP11_110
#define scope_HAVE_IS_NOTHROW_MOVE_ASSIGNABLE scope_CPP11_110

#define scope_HAVE_REFERENCE_WRAPPER scope_CPP11_110
#define scope_HAVE_FUNCATIONAL scope_CPP11_110
#define scope_HAVE_REFERENCE_WRAPPER scope_HAVE_FUNCATIONAL

#define scope_HAVE_REMOVE_CV scope_CPP11_90
#define scope_HAVE_REMOVE_REFERENCE scope_CPP11_90
Expand Down Expand Up @@ -329,6 +330,10 @@ namespace nonstd
#include <limits> // std::numeric_limits<>
#include <utility> // move(), forward<>(), swap()

#if scope_HAVE_FUNCATIONAL
# include <functional>
#endif

#if scope_HAVE_TYPE_TRAITS
# include <type_traits>
#elif scope_HAVE_TR1_TYPE_TRAITS
Expand Down