Fixes clang compilation error

According to ISO C++03 14.2/4 it should use the template keyword to fix this => http://stackoverflow.com/a/3786481/724098
pull/436/head
Francisco Facioni 9 years ago
parent 5e008c8758
commit 8bbf16ddc8
  1. 2
      modules/cvv/src/stfl/stfl_engine.hpp

@ -1053,7 +1053,7 @@ private:
{
return QStringList();
}
return settings.value(key).value<QStringList>();
return settings.value(key).template value<QStringList>();
}
QStringList getStoredCmdsForInput(QString input)

Loading…
Cancel
Save