Commit 5e3d1082 authored by Xavier Thompson's avatar Xavier Thompson

builtins: Fix missing initialize

gcc requires it even though omitting it is valid in C++20
parent bbd9f978
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
#define FUNCTION(ret, name, args, ...) \ #define FUNCTION(ret, name, args, ...) \
struct { \ struct { \
ret operator() args const __VA_ARGS__ \ ret operator() args const __VA_ARGS__ \
} static constexpr name; } static constexpr name{};
using namespace std::literals; using namespace std::literals;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment