Core/GCMemcard: Remove obsolete TODO
Now that we assume C++17, the in-file definition of the std::array can be removed. This is all that's necessary, as constexpr used on a static member variable implies inline (and so, automatically has C++17's static inline behavior).
This commit is contained in:
parent
204af41e73
commit
b2b5b01eda
|
@ -20,9 +20,6 @@
|
||||||
#include "Common/StringUtil.h"
|
#include "Common/StringUtil.h"
|
||||||
#include "Common/Swap.h"
|
#include "Common/Swap.h"
|
||||||
|
|
||||||
// TODO: Remove when on C++17 everywhere.
|
|
||||||
constexpr std::array<u8, 4> DEntry::UNINITIALIZED_GAMECODE;
|
|
||||||
|
|
||||||
static void ByteSwap(u8* valueA, u8* valueB)
|
static void ByteSwap(u8* valueA, u8* valueB)
|
||||||
{
|
{
|
||||||
u8 tmp = *valueA;
|
u8 tmp = *valueA;
|
||||||
|
|
Loading…
Reference in New Issue