mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-04-23 20:50:59 -05:00
Remove warnings on MacOS
This commit is contained in:
@@ -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)))
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user