diff options
Diffstat (limited to 'compat/macros.hpp')
-rw-r--r-- | compat/macros.hpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/compat/macros.hpp b/compat/macros.hpp index 5d82c4ee..5b959011 100644 --- a/compat/macros.hpp +++ b/compat/macros.hpp @@ -93,11 +93,6 @@ constexpr cc_forceinline void static_warn<true>() {} #define typed_progn(type, ...) ([&]() -> type { __VA_ARGS__ }()) #define progn(...) ([&]() -> decltype(auto) { __VA_ARGS__ }()) -#define prog1(x, ...) ([&]() -> decltype(auto) \ - { \ - decltype(auto) ret1324 = (x); __VA_ARGS__; return ret1324; \ - }()) - // end c++-only macros #endif |