mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-02-23 05:19:18 -06:00
Introduction of new Dictionary class (#1446)
* Adapting to introduction of new Dictionary class in Ghoul * Mainly replacing usage of float instead of doubles as expected * Adjust to the lack of the hasKeyAndValue function
This commit is contained in:
@@ -84,7 +84,7 @@ void ServerModule::internalInitialize(const ghoul::Dictionary& configuration) {
|
||||
}
|
||||
ghoul::Dictionary interfaces = configuration.value<ghoul::Dictionary>(KeyInterfaces);
|
||||
|
||||
for (const std::string& key : interfaces.keys()) {
|
||||
for (std::string_view key : interfaces.keys()) {
|
||||
ghoul::Dictionary interfaceDictionary = interfaces.value<ghoul::Dictionary>(key);
|
||||
|
||||
// @TODO (abock, 2019-09-17); This is a hack to make the parsing of the
|
||||
|
||||
Reference in New Issue
Block a user