Fix macro conformance

This commit is contained in:
Chuck Walbourn 2020-05-20 18:18:24 -07:00
parent f02f9db942
commit 1d7790d553
3 changed files with 3 additions and 3 deletions

View File

@ -152,7 +152,7 @@ const SValue g_pOptions[] =
{ nullptr, 0 } { nullptr, 0 }
}; };
#define DEFFMT(fmt) { L""#fmt, DXGI_FORMAT_ ## fmt } #define DEFFMT(fmt) { L## #fmt, DXGI_FORMAT_ ## fmt }
const SValue g_pFormats[] = const SValue g_pFormats[] =
{ {

View File

@ -201,7 +201,7 @@ const SValue g_pOptions[] =
{ nullptr, 0 } { nullptr, 0 }
}; };
#define DEFFMT(fmt) { L""#fmt, DXGI_FORMAT_ ## fmt } #define DEFFMT(fmt) { L## #fmt, DXGI_FORMAT_ ## fmt }
const SValue g_pFormats[] = const SValue g_pFormats[] =
{ {

View File

@ -126,7 +126,7 @@ const SValue g_pOptions[] =
{ nullptr, 0 } { nullptr, 0 }
}; };
#define DEFFMT(fmt) { L""#fmt, DXGI_FORMAT_ ## fmt } #define DEFFMT(fmt) { L## #fmt, DXGI_FORMAT_ ## fmt }
const SValue g_pFormats[] = const SValue g_pFormats[] =
{ {