diff options
author | unknown <reggie@fedora.(none)> | 2005-08-01 17:07:19 -0500 |
---|---|---|
committer | unknown <reggie@fedora.(none)> | 2005-08-01 17:07:19 -0500 |
commit | 22c89ac45125c5f33cfa7d4e75a4e84db0673125 (patch) | |
tree | 19306d27fae11762e927ef214b1d341e2c95c7f0 /include/config-win.h | |
parent | aa337b1d5e0de234458b15d4eeead1ff5df45822 (diff) | |
download | mariadb-git-22c89ac45125c5f33cfa7d4e75a4e84db0673125.tar.gz |
fix compile warning in Visual Studio 2003
Diffstat (limited to 'include/config-win.h')
-rw-r--r-- | include/config-win.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/config-win.h b/include/config-win.h index 04f79e95c80..4eaf97cd4f5 100644 --- a/include/config-win.h +++ b/include/config-win.h @@ -284,7 +284,6 @@ inline double ulonglong2double(ulonglong value) #define doublestore(T,V) { *((long *) T) = *((long*) &V); \ *(((long *) T)+1) = *(((long*) &V)+1); } #define float4get(V,M) { *((long *) &(V)) = *((long*) (M)); } -#define floatget(V,M) memcpy((byte*) &V,(byte*) (M),sizeof(float)) #define floatstore(T,V) memcpy((byte*)(T), (byte*)(&V), sizeof(float)) #define floatget(V,M) memcpy((byte*)(&V), (byte*)(M), sizeof(float)) #define float8get(V,M) doubleget((V),(M)) |