mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-03-10 08:00:05 +00:00
(svn r20287) -Fix: GCC 4.1 warning
This commit is contained in:
parent
4bd32799f1
commit
d1787d884c
@ -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),
|
||||
|
Loading…
Reference in New Issue
Block a user