Skip to content

Commit

Permalink
Using constexpr
Browse files Browse the repository at this point in the history
  • Loading branch information
tederis committed Jan 25, 2025
1 parent f896220 commit 500467f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Client/mods/deathmatch/logic/CClientRenderElementManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@

namespace
{
const std::int64_t TEMPORARY_TEXTURES_CLEANUP_THRESHOLD = 10000ll;
const std::size_t TEMPORARY_TEXTURES_DELETE_THRESHOLD = 10u;
constexpr std::int64_t TEMPORARY_TEXTURES_CLEANUP_THRESHOLD = 10000ll;
constexpr std::size_t TEMPORARY_TEXTURES_DELETE_THRESHOLD = 10u;
}

////////////////////////////////////////////////////////////////
Expand Down

0 comments on commit 500467f

Please sign in to comment.