Commit e1538351 authored by rusty1s's avatar rusty1s
Browse files

windows fix

parent 6056f778
...@@ -9,15 +9,15 @@ ...@@ -9,15 +9,15 @@
[&] { \ [&] { \
switch (degree) { \ switch (degree) { \
case 1: { \ case 1: { \
const int64_t DEGREE = 1; \ static constexpr int64_t DEGREE = 1; \
return __VA_ARGS__(); \ return __VA_ARGS__(); \
} \ } \
case 2: { \ case 2: { \
const int64_t DEGREE = 2; \ static constexpr int64_t DEGREE = 2; \
return __VA_ARGS__(); \ return __VA_ARGS__(); \
} \ } \
case 3: { \ case 3: { \
const int64_t DEGREE = 3; \ static constexpr int64_t DEGREE = 3; \
return __VA_ARGS__(); \ return __VA_ARGS__(); \
} \ } \
default: \ default: \
......
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