mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-09-24 05:00:31 -04:00
Use a constexpr for esm cc
This commit is contained in:
parent
e74ea56434
commit
89f721fad3
@ -85,7 +85,7 @@ bool inline operator!= (const Position& left, const Position& right) noexcept
|
||||
template <int a, int b, int c, int d>
|
||||
struct FourCC
|
||||
{
|
||||
static const unsigned int value = (((((d << 8) | c) << 8) | b) << 8) | a;
|
||||
static constexpr unsigned int value = (((((d << 8) | c) << 8) | b) << 8) | a;
|
||||
};
|
||||
|
||||
enum RecNameInts
|
||||
|
Loading…
x
Reference in New Issue
Block a user