summaryrefslogtreecommitdiff
path: root/src/driver.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2013-11-25 14:30:22 +0000
committerrubidium <rubidium@openttd.org>2013-11-25 14:30:22 +0000
commitdefda16eb60a87b3878ab27178df7552c3148808 (patch)
tree2c2d04d2f13468305583547d657ae3b8cee18d1d /src/driver.h
parent6996b441d9d104bc6d7041b64362f4426425f600 (diff)
downloadopenttd-defda16eb60a87b3878ab27178df7552c3148808.tar.xz
(svn r26108) -Codechange: some coding style (whitespace)
Diffstat (limited to 'src/driver.h')
-rw-r--r--src/driver.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/driver.h b/src/driver.h
index 246180270..a466d67d0 100644
--- a/src/driver.h
+++ b/src/driver.h
@@ -59,9 +59,9 @@ DECLARE_POSTFIX_INCREMENT(Driver::Type)
/** Base for all driver factories. */
class DriverFactoryBase {
private:
- Driver::Type type; ///< The type of driver.
+ Driver::Type type; ///< The type of driver.
int priority; ///< The priority of this factory.
- const char *name; ///< The name of the drivers of this factory.
+ const char *name; ///< The name of the drivers of this factory.
const char *description; ///< The description of this driver.
typedef std::map<const char *, DriverFactoryBase *, StringCompare> Drivers; ///< Type for a map of drivers.