Collection of a number of changes (#2286)

* Cleanup Property code
* Remove NOLINT statements
* Return Property class types as string_view
* Remove getStringValue function
* Simplify string value retrieval
* Ensure that image paths in the ImageSequenceTileProvider are sorted (closes #2205)
* Some cleanup of OpenSpaceEngine
* Cleanup documentation
* Some more cleanup of engine classes
* Some more cleanup
* Update SGCT repository
* Use new Jenkins node identifiers as the old method broke with update
This commit is contained in:
Alexander Bock
2022-10-30 12:54:14 +01:00
committed by GitHub
parent 3862e1f449
commit 6249fa6d89
129 changed files with 467 additions and 761 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ using json = nlohmann::json;
namespace openspace::properties {
void to_json(json& j, const Property& p) {
std::string description = p.generateBaseJsonDescription();
std::string description = p.generateJsonDescription();
json desc = json::parse(description);
std::string value = p.jsonValue();