Skip to content

Commit 500467f

Browse files
committed
Using constexpr
1 parent f896220 commit 500467f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Client/mods/deathmatch/logic/CClientRenderElementManager.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313

1414
namespace
1515
{
16-
const std::int64_t TEMPORARY_TEXTURES_CLEANUP_THRESHOLD = 10000ll;
17-
const std::size_t TEMPORARY_TEXTURES_DELETE_THRESHOLD = 10u;
16+
constexpr std::int64_t TEMPORARY_TEXTURES_CLEANUP_THRESHOLD = 10000ll;
17+
constexpr std::size_t TEMPORARY_TEXTURES_DELETE_THRESHOLD = 10u;
1818
}
1919

2020
////////////////////////////////////////////////////////////////

0 commit comments

Comments
 (0)