Remove warnings on MacOS

This commit is contained in:
Alexander Bock
2017-12-26 23:06:11 +01:00
parent 59916bc0c1
commit fac3780ce9
13 changed files with 17 additions and 23 deletions
@@ -295,7 +295,7 @@ void ProjectionComponent::initialize(const ghoul::Dictionary& dictionary) {
ghoul::Dictionary sourcesDict = dictionary.value<ghoul::Dictionary>(
keySequenceDir
);
for (int i = 1; i <= sourcesDict.size(); ++i) {
for (int i = 1; i <= static_cast<int>(sourcesDict.size()); ++i) {
sequenceSources.push_back(
absPath(sourcesDict.value<std::string>(std::to_string(i)))
);