Skip to content

Commit

Permalink
Fix another clang warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
kring committed Oct 29, 2024
1 parent 323de96 commit a9d6c6a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CesiumAsync/test/TestSharedAssetDepot.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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<TestAsset> assetOne =
pDepot->getOrCreate(asyncSystem, nullptr, "one").waitInMainThread();
Expand Down

0 comments on commit a9d6c6a

Please sign in to comment.