aboutsummaryrefslogtreecommitdiff
path: root/scumm/saveload.h
diff options
context:
space:
mode:
authorMax Horn2002-09-22 03:57:41 +0000
committerMax Horn2002-09-22 03:57:41 +0000
commit5d72701c06df605f9186735adc4df3e025e48668 (patch)
tree385bd08bda0396d51e6b6fc01a02aa981d98c89b /scumm/saveload.h
parent8390b0cc53b2025108eee9a8ea9ee7f411edd55e (diff)
downloadscummvm-rg350-5d72701c06df605f9186735adc4df3e025e48668.tar.gz
scummvm-rg350-5d72701c06df605f9186735adc4df3e025e48668.tar.bz2
scummvm-rg350-5d72701c06df605f9186735adc4df3e025e48668.zip
fixed the non-POD warning for real this time
svn-id: r4999
Diffstat (limited to 'scumm/saveload.h')
-rw-r--r--scumm/saveload.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/scumm/saveload.h b/scumm/saveload.h
index 46fc145da6..914d6b9346 100644
--- a/scumm/saveload.h
+++ b/scumm/saveload.h
@@ -22,8 +22,16 @@
#ifndef SAVELOAD_H
#define SAVELOAD_H
-#define OFFS(type,item) ((int)(&((type*)0)->type::item))
-#define SIZE(type,item) sizeof(((type*)0)->type::item)
+// To work around a warning in GCC 3.2 (and 3.1 ?) regarding non-POD types,
+// we use a small trick: instead of 0 we use 42. Why? Well, it seems newer GCC
+// versions hae a heuristic built in to detect "offset-of" patterns - which is exactly
+// what our OFFS macro does. Now, for non-POD types this is not really legal, because
+// member need not be at a fixed offset relative to the variable, even if they are in
+// current reality (many of our complex structs are non-POD; for an explanation of
+// what POD means refer to http://www-cpd.fnal.gov/personal/wb/boost/ISOcxx/doc/POD.html)
+
+#define OFFS(type,item) (((int)(&((type*)42)->type::item))-42)
+#define SIZE(type,item) sizeof(((type*)42)->type::item)
#define MKLINE(type,item,saveas) {OFFS(type,item),saveas,SIZE(type,item)}
#define MKARRAY(type,item,saveas,num) {OFFS(type,item),128|saveas,SIZE(type,item)}, {num,0,0}
#define MKEND() {0xFFFF,0xFF,0xFF}