Skip to content
Snippets Groups Projects
Commit 2e7392e7 authored by Victor Poughon's avatar Victor Poughon
Browse files

BUG: add message to static_assert

parent de9e795b
Branches
Tags
No related merge requests found
......@@ -91,7 +91,8 @@ constexpr char const* parameterTypesStrings [] = {
"InputProcessXML",
"Bool"
};
static_assert(std::extent<decltype(parameterTypesStrings)>::value == ParameterType_MAX__);
static_assert(std::extent<decltype(parameterTypesStrings)>::value == ParameterType_MAX__,
"Wrong number of parameters in parameterTypesStrings");
}
// Free functions to convert from and to std::string
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment