summaryrefslogtreecommitdiff
path: root/src/driver.h
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2009-02-03 18:08:07 +0000
committersmatz <smatz@openttd.org>2009-02-03 18:08:07 +0000
commit5ad1cd32b2f630f413646131fbdfbae85b3c72f8 (patch)
tree92c36bf040777addb4a1d7b1f21a0042daf33e26 /src/driver.h
parentd23db8306e55b6cd471d848c6825c78c5269f5f9 (diff)
downloadopenttd-5ad1cd32b2f630f413646131fbdfbae85b3c72f8.tar.xz
(svn r15324) -Codechange: unify the class used for comparing of strings for std::map
Diffstat (limited to 'src/driver.h')
-rw-r--r--src/driver.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/driver.h b/src/driver.h
index 61fede9c4..b2a359b97 100644
--- a/src/driver.h
+++ b/src/driver.h
@@ -6,6 +6,7 @@
#define DRIVER_H
#include "core/enum_type.hpp"
+#include "core/string_compare_type.hpp"
#include "string_func.h"
#include <map>
@@ -39,13 +40,6 @@ private:
const char *name;
int priority;
- struct StringCompare {
- bool operator () (const char *a, const char *b) const
- {
- return strcmp(a, b) < 0;
- }
- };
-
typedef std::map<const char *, DriverFactoryBase *, StringCompare> Drivers;
static Drivers &GetDrivers()