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

WRG: fix warning about type conversion

parent bd855676
No related branches found
No related tags found
No related merge requests found
......@@ -32,7 +32,7 @@ std::string ParameterTypeToString(ParameterType type)
ParameterType ParameterStringToType(const std::string& str)
{
for (auto i = 0; i < parameterTypesStrings.size(); i++)
for (std::size_t i = 0; i < parameterTypesStrings.size(); i++)
{
if (str == parameterTypesStrings[i])
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment