1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00

Mysqlnd: Removed useless precompilter cond (#19120)

This commit is contained in:
Marc Bennewitz
2025-08-28 14:42:02 +02:00
committed by GitHub
parent 9794f483d4
commit 76a97f56d6

View File

@@ -284,15 +284,8 @@ typedef union {
register) variable, M is a pointer to byte */
#ifndef float8get
#ifdef WORDS_BIGENDIAN
#define float8get(V,M) memcpy((char*) &(V),(char*) (M), sizeof(double))
#define float8store(T,V) memcpy((char*) (T),(char*) &(V), sizeof(double))
#else
#define float8get(V,M) memcpy((char*) &(V),(char*) (M),sizeof(double))
#define float8store(T,V) memcpy((char*) (T),(char*) &(V),sizeof(double))
#endif /* WORDS_BIGENDIAN */
#endif /* float8get */
# define float8get(V,M) memcpy((char*) &(V),(char*) (M),sizeof(double))
# define float8store(T,V) memcpy((char*) (T),(char*) &(V),sizeof(double))
#endif
#endif /* MYSQLND_PORTABILITY_H */