aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2007-01-06 19:09:39 +0000
committerMax Horn2007-01-06 19:09:39 +0000
commit7f0156322fcc13e1a718e1d5544017be672bfc2b (patch)
tree74e2c3f01c7628964f43f0748b700dc20d5fe0d5
parentee221cc5df30ae2b14007e0bb57bffd95c3aa837 (diff)
downloadscummvm-rg350-7f0156322fcc13e1a718e1d5544017be672bfc2b.tar.gz
scummvm-rg350-7f0156322fcc13e1a718e1d5544017be672bfc2b.tar.bz2
scummvm-rg350-7f0156322fcc13e1a718e1d5544017be672bfc2b.zip
Updated POD explanation link
svn-id: r25040
-rw-r--r--engines/scumm/saveload.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/scumm/saveload.h b/engines/scumm/saveload.h
index c4723b2d31..0daec2644f 100644
--- a/engines/scumm/saveload.h
+++ b/engines/scumm/saveload.h
@@ -71,7 +71,8 @@ namespace Scumm {
* 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)
+ * what POD means refer to <http://en.wikipedia.org/wiki/Plain_Old_Data_Structures> or
+ * to <http://www.informit.com/guides/content.asp?g=cplusplus&seqNum=32&rl=1>)
*/
#define OFFS(type,item) (((ptrdiff_t)(&((type*)42)->type::item))-42)