summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--compat/macros.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/macros.hpp b/compat/macros.hpp
index 05603e7b..08be9b4a 100644
--- a/compat/macros.hpp
+++ b/compat/macros.hpp
@@ -32,7 +32,7 @@ using to_const_ref_t = std::add_lvalue_reference_t<std::add_const_t<remove_cvref
#define eval_once2(expr, ctr) \
([&] { \
[[maybe_unused]] \
- static auto PP_CAT(eval_once_, ctr) = (((void)(expr)), 0); \
+ static auto PP_CAT(init, ctr) = (((void)(expr)), 0); \
}())
template<typename t>