Try to fix MinGW compilation error
It shouldn't make a difference since static constexpr already implies inline but we're talking about MinGW
This commit is contained in:
parent
f0fd3b232c
commit
592780562e
|
|
@ -43,8 +43,8 @@ namespace Nz
|
|||
struct Array_t {};
|
||||
struct OptionalBlock_t {};
|
||||
|
||||
static constexpr Array_t Array{};
|
||||
static constexpr OptionalBlock_t OptionalBlock{};
|
||||
static constexpr inline Array_t Array{};
|
||||
static constexpr inline OptionalBlock_t OptionalBlock{};
|
||||
|
||||
private:
|
||||
using ValueHandler = std::function<void(ParameterFile& file)>;
|
||||
|
|
|
|||
Loading…
Reference in New Issue