summaryrefslogtreecommitdiff
path: root/indra/llcommon
diff options
context:
space:
mode:
authorBrian McGroarty <soft@lindenlab.com>2008-08-21 13:22:47 +0000
committerBrian McGroarty <soft@lindenlab.com>2008-08-21 13:22:47 +0000
commit30638bb110b2adf64057f9dbf893ab2d48f10e3e (patch)
treedcd4cb30ba09300fd6ea896519a76d42516672f3 /indra/llcommon
parentb59caea98038636b8a3154b33486a18349bed482 (diff)
Additional gcc warnings - no code effect
Diffstat (limited to 'indra/llcommon')
-rw-r--r--indra/llcommon/llprocessor.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/indra/llcommon/llprocessor.h b/indra/llcommon/llprocessor.h
index 30bc14d6ce..f176478886 100644
--- a/indra/llcommon/llprocessor.h
+++ b/indra/llcommon/llprocessor.h
@@ -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;