Fix 2 "static is not at beginning of declaration" warnings.
This commit is contained in:
parent
b222f1bca4
commit
2783e72a65
|
@ -30,7 +30,7 @@ typedef struct _D3DDECLTYPE_INFO {
|
||||||
int typesize;
|
int typesize;
|
||||||
} D3DDECLTYPE_INFO;
|
} D3DDECLTYPE_INFO;
|
||||||
|
|
||||||
D3DDECLTYPE_INFO static const d3d_dtype_lookup[D3DDECLTYPE_UNUSED] = {
|
static D3DDECLTYPE_INFO const d3d_dtype_lookup[D3DDECLTYPE_UNUSED] = {
|
||||||
{D3DDECLTYPE_FLOAT1, 1, sizeof(float)},
|
{D3DDECLTYPE_FLOAT1, 1, sizeof(float)},
|
||||||
{D3DDECLTYPE_FLOAT2, 2, sizeof(float)},
|
{D3DDECLTYPE_FLOAT2, 2, sizeof(float)},
|
||||||
{D3DDECLTYPE_FLOAT3, 3, sizeof(float)},
|
{D3DDECLTYPE_FLOAT3, 3, sizeof(float)},
|
||||||
|
|
|
@ -336,7 +336,7 @@ static void test_GetCharABCWidthsW(void)
|
||||||
|
|
||||||
static void test_text_extents(void)
|
static void test_text_extents(void)
|
||||||
{
|
{
|
||||||
const static WCHAR wt[] = {'O','n','e','\n','t','w','o',' ','3',0};
|
static const WCHAR wt[] = {'O','n','e','\n','t','w','o',' ','3',0};
|
||||||
LPINT extents;
|
LPINT extents;
|
||||||
INT i, len, fit1, fit2;
|
INT i, len, fit1, fit2;
|
||||||
LOGFONTA lf;
|
LOGFONTA lf;
|
||||||
|
|
Loading…
Reference in New Issue