From a9d6c6a316710a8387d1dcb6445deac1c27e3a44 Mon Sep 17 00:00:00 2001 From: Kevin Ring Date: Tue, 29 Oct 2024 21:17:07 +1100 Subject: [PATCH] Fix another clang warning. --- CesiumAsync/test/TestSharedAssetDepot.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CesiumAsync/test/TestSharedAssetDepot.cpp b/CesiumAsync/test/TestSharedAssetDepot.cpp index 86102312a..accd6421c 100644 --- a/CesiumAsync/test/TestSharedAssetDepot.cpp +++ b/CesiumAsync/test/TestSharedAssetDepot.cpp @@ -103,7 +103,8 @@ TEST_CASE("SharedAssetDepot") { SECTION("inactive assets are deleted when size threshold is exceeded") { auto pDepot = createDepot(); - pDepot->inactiveAssetSizeLimitBytes = std::string("one").size() + 1; + pDepot->inactiveAssetSizeLimitBytes = + int64_t(std::string("one").size() + 1); ResultPointer assetOne = pDepot->getOrCreate(asyncSystem, nullptr, "one").waitInMainThread();