diff --git a/modules/globebrowsing/src/geojson/geojsonmanager.cpp b/modules/globebrowsing/src/geojson/geojsonmanager.cpp index 1b0850f4d2..5272c02bcb 100644 --- a/modules/globebrowsing/src/geojson/geojsonmanager.cpp +++ b/modules/globebrowsing/src/geojson/geojsonmanager.cpp @@ -71,7 +71,7 @@ bool GeoJsonManager::isReady() const { } void GeoJsonManager::addGeoJsonLayer(const ghoul::Dictionary& layerDict) { - ZoneScoped + ZoneScoped; try { // Parse dictionary @@ -106,7 +106,7 @@ void GeoJsonManager::addGeoJsonLayer(const ghoul::Dictionary& layerDict) { } void GeoJsonManager::deleteLayer(const std::string& layerIdentifier) { - ZoneScoped + ZoneScoped; for (auto it = _geoJsonObjects.begin(); it != _geoJsonObjects.end(); ++it) { if (it->get()->identifier() == layerIdentifier) { @@ -124,7 +124,7 @@ void GeoJsonManager::deleteLayer(const std::string& layerIdentifier) { } void GeoJsonManager::update() { - ZoneScoped + ZoneScoped; for (std::unique_ptr& obj : _geoJsonObjects) { if (obj->enabled()) { @@ -134,7 +134,7 @@ void GeoJsonManager::update() { } void GeoJsonManager::render(const RenderData& data) { - ZoneScoped + ZoneScoped; for (std::unique_ptr& obj : _geoJsonObjects) { if (obj->enabled()) { diff --git a/modules/video/src/videoplayer.cpp b/modules/video/src/videoplayer.cpp index 68d4132df0..a4b72259ba 100644 --- a/modules/video/src/videoplayer.cpp +++ b/modules/video/src/videoplayer.cpp @@ -260,7 +260,7 @@ VideoPlayer::VideoPlayer(const ghoul::Dictionary& dictionary) , _playAudio(AudioInfo, false) , _loopVideo(LoopVideoInfo, true) { - ZoneScoped + ZoneScoped; const Parameters p = codegen::bake(dictionary); diff --git a/modules/video/src/videotileprovider.cpp b/modules/video/src/videotileprovider.cpp index 64a6a18a24..84af3d24d4 100644 --- a/modules/video/src/videotileprovider.cpp +++ b/modules/video/src/videotileprovider.cpp @@ -51,14 +51,14 @@ bool isDifferent(double first, double second) { VideoTileProvider::VideoTileProvider(const ghoul::Dictionary& dictionary) : _videoPlayer(dictionary) { - ZoneScoped + ZoneScoped; addPropertySubOwner(_videoPlayer); } VideoTileProvider::~VideoTileProvider() {} globebrowsing::Tile VideoTileProvider::tile(const globebrowsing::TileIndex& tileIndex) { - ZoneScoped + ZoneScoped; if (!_videoPlayer.isInitialized()) { return globebrowsing::Tile(); diff --git a/src/properties/propertyowner.cpp b/src/properties/propertyowner.cpp index be1eacf9a8..d0a6d37b47 100644 --- a/src/properties/propertyowner.cpp +++ b/src/properties/propertyowner.cpp @@ -42,7 +42,7 @@ namespace { constexpr std::string_view _loggerCat = "PropertyOwner"; nlohmann::json createJson(openspace::properties::PropertyOwner* owner) { - ZoneScoped + ZoneScoped; using namespace openspace; nlohmann::json json; @@ -387,7 +387,7 @@ void PropertyOwner::removeTag(const std::string& tag) { } nlohmann::json PropertyOwner::generateJson() const { - ZoneScoped + ZoneScoped; nlohmann::json json; std::vector subOwners = propertySubOwners(); diff --git a/src/scripting/scriptengine.cpp b/src/scripting/scriptengine.cpp index d70328d81b..3de34f2282 100644 --- a/src/scripting/scriptengine.cpp +++ b/src/scripting/scriptengine.cpp @@ -449,7 +449,7 @@ std::vector ScriptEngine::allLuaFunctions() const { } nlohmann::json ScriptEngine::generateJson() const { - ZoneScoped + ZoneScoped; nlohmann::json json;