From dbc9fd6c0e923ab4ce5ca1b820bbe72884cb3d09 Mon Sep 17 00:00:00 2001 From: Randy Heit Date: Wed, 23 Oct 2013 22:46:34 -0500 Subject: [PATCH] Pad PSymbolConstNumeric to ensure it's the same size as PSymbolConstString --- src/dobjtype.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/dobjtype.h b/src/dobjtype.h index a282d0790c..b66f683400 100644 --- a/src/dobjtype.h +++ b/src/dobjtype.h @@ -744,6 +744,7 @@ public: { int Value; double Float; + void *Pad; }; PSymbolConstNumeric(FName name, PType *type=NULL) : PSymbolConst(name, type) {}