diff options
Diffstat (limited to 'compat')
-rw-r--r-- | compat/macros.hpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/compat/macros.hpp b/compat/macros.hpp index 5b959011..f905ad6c 100644 --- a/compat/macros.hpp +++ b/compat/macros.hpp @@ -90,9 +90,7 @@ constexpr cc_forceinline void static_warn<true>() {} #define static_warning(cond) \ static_warn<(cond)>(); \ -#define typed_progn(type, ...) ([&]() -> type { __VA_ARGS__ }()) #define progn(...) ([&]() -> decltype(auto) { __VA_ARGS__ }()) // end c++-only macros #endif - |