mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 07:09:48 -06:00
DataReader: Make use of if constexpr where applicable
We can make use of if constexpr for cases where booleans will always statically be known at compile-time.
This commit is contained in:
@ -30,7 +30,7 @@ public:
|
|||||||
T data;
|
T data;
|
||||||
std::memcpy(&data, &buffer[offset], sizeof(T));
|
std::memcpy(&data, &buffer[offset], sizeof(T));
|
||||||
|
|
||||||
if (swapped)
|
if constexpr (swapped)
|
||||||
data = Common::FromBigEndian(data);
|
data = Common::FromBigEndian(data);
|
||||||
|
|
||||||
return data;
|
return data;
|
||||||
@ -47,7 +47,7 @@ public:
|
|||||||
template <typename T, bool swapped = false>
|
template <typename T, bool swapped = false>
|
||||||
DOLPHIN_FORCE_INLINE void Write(T data)
|
DOLPHIN_FORCE_INLINE void Write(T data)
|
||||||
{
|
{
|
||||||
if (swapped)
|
if constexpr (swapped)
|
||||||
data = Common::FromBigEndian(data);
|
data = Common::FromBigEndian(data);
|
||||||
|
|
||||||
std::memcpy(buffer, &data, sizeof(T));
|
std::memcpy(buffer, &data, sizeof(T));
|
||||||
|
Reference in New Issue
Block a user