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:
Lioncash 2019-05-27 11:48:36 -04:00
parent 204af41e73
commit b2b5b01eda
1 changed files with 0 additions and 3 deletions

View File

@ -20,9 +20,6 @@
#include "Common/StringUtil.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)
{
u8 tmp = *valueA;