Codechange: rename _SQ64 into POINTER_IS_64BIT (#9313)

This commit is contained in:
Patric Stout
2021-05-30 10:40:03 +02:00
committed by GitHub
parent 8c273ed598
commit bcd7a7aafe
6 changed files with 9 additions and 9 deletions

View File

@@ -73,8 +73,8 @@
#endif
/* Check for mismatching 'architectures' */
#if !defined(STRGEN) && !defined(SETTINGSGEN) && ((defined(__LP64__) && !defined(_SQ64)) || (!defined(__LP64__) && defined(_SQ64)))
# error "Compiling 64 bits without _SQ64 set! (or vice versa)"
#if !defined(STRGEN) && !defined(SETTINGSGEN) && ((defined(__LP64__) && !defined(POINTER_IS_64BIT)) || (!defined(__LP64__) && defined(POINTER_IS_64BIT)))
# error "Compiling 64 bits without POINTER_IS_64BIT set! (or vice versa)"
#endif
/* Name conflict */