Browse Source

Using language compliant header guards.

bkaradzic 12 years ago
parent
commit
d5d1a541a0
3 changed files with 5 additions and 5 deletions
  1. 1 1
      include/bx/float4_sse.h
  2. 1 1
      include/bx/handlealloc.h
  3. 3 3
      include/compat/mingw/alloca.h

+ 1 - 1
include/bx/float4_sse.h

@@ -403,4 +403,4 @@ IMPLEMENT_TEST(xyzw , 0xf);
 #define float4_floor float4_floor_ni
 #define float4_floor float4_floor_ni
 #include "float4_ni.h"
 #include "float4_ni.h"
 
 
-#endif // __FLOAT4_SSE_H__
+#endif // BX_FLOAT4_SSE_H_HEADER_GUARD

+ 1 - 1
include/bx/handlealloc.h

@@ -169,4 +169,4 @@ namespace bx
 
 
 } // namespace bx
 } // namespace bx
 
 
-#endif // __HANDLE_ALLOC_H__
+#endif // BX_HANDLE_ALLOC_H_HEADER_GUARD

+ 3 - 3
include/compat/mingw/alloca.h

@@ -1,6 +1,6 @@
-#ifndef __MINGW32__ALLOCA_H__
-#define __MINGW32__ALLOCA_H__
+#ifndef MINGW32_ALLOCA_H_HEADER_GUARD
+#define MINGW32_ALLOCA_H_HEADER_GUARD
 
 
 #include <malloc.h>
 #include <malloc.h>
 
 
-#endif // __MINGW32__ALLOCA_H__
+#endif // MINGW32_ALLOCA_H_HEADER_GUARD