mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-20 03:00:03 -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:
@@ -200,8 +200,8 @@ TestResult testSpecification(const Documentation& documentation,
|
||||
|
||||
for (const auto& p : documentation.entries) {
|
||||
if (p.key == DocumentationEntry::Wildcard) {
|
||||
for (const std::string& key : dictionary.keys()) {
|
||||
applyVerifier(*(p.verifier), key);
|
||||
for (std::string_view key : dictionary.keys()) {
|
||||
applyVerifier(*(p.verifier), std::string(key));
|
||||
}
|
||||
}
|
||||
else {
|
||||
|
||||
Reference in New Issue
Block a user