Additional gcc warnings - no code effect

master
Brian McGroarty 2008-08-21 13:22:47 +00:00
parent b59caea980
commit 30638bb110
2 changed files with 7 additions and 7 deletions

View File

@ -58,7 +58,7 @@
#endif
typedef struct ProcessorExtensions
typedef struct
{
bool FPU_FloatingPointUnit;
bool VME_Virtual8086ModeEnhancements;
@ -99,7 +99,7 @@ typedef struct ProcessorExtensions
bool AA64_AMD64BitArchitecture;
} ProcessorExtensions;
typedef struct ProcessorCache
typedef struct
{
bool bPresent;
char strSize[32]; /* Flawfinder: ignore */
@ -109,13 +109,13 @@ typedef struct ProcessorCache
char strCache[128]; /* Flawfinder: ignore */
} ProcessorCache;
typedef struct ProcessorL1Cache
typedef struct
{
ProcessorCache Instruction;
ProcessorCache Data;
} ProcessorL1Cache;
typedef struct ProcessorTLB
typedef struct
{
bool bPresent;
char strPageSize[32]; /* Flawfinder: ignore */
@ -124,7 +124,7 @@ typedef struct ProcessorTLB
char strTLB[128]; /* Flawfinder: ignore */
} ProcessorTLB;
typedef struct ProcessorInfo
typedef struct
{
char strVendor[16]; /* Flawfinder: ignore */
unsigned int uiFamily;

View File

@ -213,12 +213,12 @@ public:
LLTexUnit* getTexUnit(U32 index);
typedef struct Vertex
typedef struct
{
GLfloat v[3];
GLubyte c[4];
GLfloat uv[2];
};
} Vertex;
public: