(svn r20287) -Fix: GCC 4.1 warning

This commit is contained in:
rubidium 2010-08-01 19:52:51 +00:00
parent 4bd32799f1
commit d1787d884c
1 changed files with 2 additions and 0 deletions

View File

@ -38,6 +38,7 @@ GRFConfig::GRFConfig(const char *filename) :
* @param config The GRFConfig object to make a copy of.
*/
GRFConfig::GRFConfig(const GRFConfig &config) :
ZeroedMemoryAllocator(),
ident(config.ident),
version(config.version),
flags(config.flags & ~GCF_COPY),
@ -133,6 +134,7 @@ GRFError::GRFError(StringID severity, StringID message) :
* @param error The GRFError object to make a copy of.
*/
GRFError::GRFError(const GRFError &error) :
ZeroedMemoryAllocator(),
custom_message(error.custom_message),
data(error.data),
message(error.message),