moved declaration of lgBasicAlignment & basicAlignment inside the include guard.

This commit is contained in:
beard%netscape.com 2000-04-05 20:26:49 +00:00
Родитель f5bda1e48e
Коммит 59cf8293ac
2 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -80,7 +80,6 @@ typedef float float32;
#ifdef __i386__
#define IS_LITTLE_ENDIAN
#endif
#endif
// basicAlignment is the maximum alignment required by any native type. An object aligned to
@ -90,3 +89,5 @@ typedef float float32;
// may be customized for individual platforms.
const uint lgBasicAlignment = 3;
const uint basicAlignment = 1u<<lgBasicAlignment;
#endif /* systemtypes_h */

Просмотреть файл

@ -80,7 +80,6 @@ typedef float float32;
#ifdef __i386__
#define IS_LITTLE_ENDIAN
#endif
#endif
// basicAlignment is the maximum alignment required by any native type. An object aligned to
@ -90,3 +89,5 @@ typedef float float32;
// may be customized for individual platforms.
const uint lgBasicAlignment = 3;
const uint basicAlignment = 1u<<lgBasicAlignment;
#endif /* systemtypes_h */