More clang-tidy

This commit is contained in:
Kevin Ring 2025-09-15 20:29:46 +10:00
parent bee5d04d2d
commit a6a447c5c5
2 changed files with 2 additions and 1 deletions

View File

@ -48,7 +48,7 @@ ActivatedRasterOverlay::ActivatedRasterOverlay(
new RasterOverlayTile(*this, glm::dvec2(0.0), Rectangle());
}
ActivatedRasterOverlay::~ActivatedRasterOverlay() {
ActivatedRasterOverlay::~ActivatedRasterOverlay() noexcept {
// Explicitly release the placeholder first, because RasterOverlayTiles must
// be destroyed before the tile provider that created them.
if (this->_pPlaceholderTile) {

View File

@ -15,6 +15,7 @@
#include <CesiumUtility/IntrusivePointer.h>
#include <fmt/format.h>
#include <nonstd/expected.hpp>
#include <spdlog/spdlog.h>
#include <exception>