include stdtypes.h for proper definition of U32.

master
Nicky 2012-12-22 18:48:57 +01:00
parent 9f29b6e09d
commit 9b5cc783bd
2 changed files with 2 additions and 12 deletions

View File

@ -26,15 +26,7 @@
*/
#ifndef LL_STDTYPES_H
#if LL_WINDOWS
typedef LONG U32;
#else
typedef unsigned int U32;
#endif
typedef unsigned char U8;
#endif
#include "stdtypes.h"
namespace ndIntrin
{

View File

@ -25,9 +25,7 @@
#ifndef NDPOOLDEFINES_H
#define NDPOOLDEFINES_H
#ifndef LL_STDTYPES_H
#include "stdtypes.h"
#endif
#include "stdtypes.h"
#define FROM_MB( mbVal ) (mbVal*1024*1024)
#define TO_MB( bVal ) ( bVal / (1024*1024) )