summaryrefslogtreecommitdiff
path: root/include/config-win.h
diff options
context:
space:
mode:
authorunknown <reggie@fedora.(none)>2005-08-01 17:07:19 -0500
committerunknown <reggie@fedora.(none)>2005-08-01 17:07:19 -0500
commit22c89ac45125c5f33cfa7d4e75a4e84db0673125 (patch)
tree19306d27fae11762e927ef214b1d341e2c95c7f0 /include/config-win.h
parentaa337b1d5e0de234458b15d4eeead1ff5df45822 (diff)
downloadmariadb-git-22c89ac45125c5f33cfa7d4e75a4e84db0673125.tar.gz
fix compile warning in Visual Studio 2003
Diffstat (limited to 'include/config-win.h')
-rw-r--r--include/config-win.h1
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))