diff options
author | smatz <smatz@openttd.org> | 2008-06-11 12:46:28 +0000 |
---|---|---|
committer | smatz <smatz@openttd.org> | 2008-06-11 12:46:28 +0000 |
commit | dc5ceacd77b490ea7b1c719753704a744a80377c (patch) | |
tree | f8aef9d33266637361443498b353b9be94545638 /src | |
parent | bd5067b5a0705cd6bef891d2bbfed8d78616d5a6 (diff) | |
download | openttd-dc5ceacd77b490ea7b1c719753704a744a80377c.tar.xz |
(svn r13462) -Codechange: move DriverFactoryBase destructor definition from header file (saves ~16kB)
Diffstat (limited to 'src')
-rw-r--r-- | src/driver.cpp | 15 | ||||
-rw-r--r-- | src/driver.h | 15 |
2 files changed, 16 insertions, 14 deletions
diff --git a/src/driver.cpp b/src/driver.cpp index 6e9c2c54d..583d6dba1 100644 --- a/src/driver.cpp +++ b/src/driver.cpp @@ -183,3 +183,18 @@ char *DriverFactoryBase::GetDriversInfo(char *p, const char *last) return p; } + +/** Frees memory used for this->name + */ +DriverFactoryBase::~DriverFactoryBase() { + if (this->name == NULL) return; + + /* Prefix the name with driver type to make it unique */ + char buf[32]; + strecpy(buf, GetDriverTypeName(type), lastof(buf)); + strecpy(buf + 5, this->name, lastof(buf)); + + GetDrivers().erase(buf); + if (GetDrivers().empty()) delete &GetDrivers(); + free(this->name); +} diff --git a/src/driver.h b/src/driver.h index 572e10cb0..af98e0fa5 100644 --- a/src/driver.h +++ b/src/driver.h @@ -67,20 +67,7 @@ public: name(NULL) {} - /** Frees memory used for this->name - */ - virtual ~DriverFactoryBase() { - if (this->name == NULL) return; - - /* Prefix the name with driver type to make it unique */ - char buf[32]; - strecpy(buf, GetDriverTypeName(type), lastof(buf)); - strecpy(buf + 5, this->name, lastof(buf)); - - GetDrivers().erase(buf); - if (GetDrivers().empty()) delete &GetDrivers(); - free(this->name); - } + virtual ~DriverFactoryBase(); /** Shuts down all active drivers */ |