Pica: Re-enable command names on MSVC.
The affected code is no longer limited by compiler support on that platform.
This commit is contained in:
parent
ac4d7462cb
commit
0305435edd
|
@ -536,10 +536,6 @@ struct Regs {
|
||||||
static std::string GetCommandName(int index) {
|
static std::string GetCommandName(int index) {
|
||||||
std::map<u32, std::string> map;
|
std::map<u32, std::string> map;
|
||||||
|
|
||||||
// TODO: MSVC does not support using offsetof() on non-static data members even though this
|
|
||||||
// is technically allowed since C++11. Hence, this functionality is disabled until
|
|
||||||
// MSVC properly supports it.
|
|
||||||
#ifndef _MSC_VER
|
|
||||||
Regs regs;
|
Regs regs;
|
||||||
#define ADD_FIELD(name) \
|
#define ADD_FIELD(name) \
|
||||||
do { \
|
do { \
|
||||||
|
@ -576,7 +572,6 @@ struct Regs {
|
||||||
ADD_FIELD(vs_swizzle_patterns);
|
ADD_FIELD(vs_swizzle_patterns);
|
||||||
|
|
||||||
#undef ADD_FIELD
|
#undef ADD_FIELD
|
||||||
#endif // _MSC_VER
|
|
||||||
|
|
||||||
// Return empty string if no match is found
|
// Return empty string if no match is found
|
||||||
return map[index];
|
return map[index];
|
||||||
|
|
Reference in New Issue