From 6dac4957c5b1384e53d3c7ed07057f3841f0a0a2 Mon Sep 17 00:00:00 2001 From: Christian Zimmermann Date: Wed, 23 Sep 2020 01:12:28 +0200 Subject: [PATCH] None: remove static constexpr for VAL --- src/include/xfor/exttype.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/xfor/exttype.h b/src/include/xfor/exttype.h index f612c5c..9f94784 100644 --- a/src/include/xfor/exttype.h +++ b/src/include/xfor/exttype.h @@ -99,7 +99,7 @@ namespace MultiArrayHelper struct None { - static constexpr size_t VAL = 0; + size_t VAL = 0; None() = default; None(const None& in) = default; None(None&& in) = default;