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

WRG: fix missing braces warning

parent 9cf41b36
No related branches found
No related tags found
No related merge requests found
......@@ -64,7 +64,7 @@ typedef enum
namespace
{
constexpr std::array<const char*, 24> parameterTypesStrings = {
constexpr std::array<const char*, 24> parameterTypesStrings = {{
"Int",
"Float",
"String",
......@@ -89,7 +89,7 @@ constexpr std::array<const char*, 24> parameterTypesStrings = {
"OutputProcessXML",
"InputProcessXML",
"Bool"
};
}};
}
// 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