summaryrefslogtreecommitdiff
path: root/src/driver.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-05-24 20:29:04 +0000
committerrubidium <rubidium@openttd.org>2009-05-24 20:29:04 +0000
commit0d99b6c71cd096599b4805d230483f3e4e958af1 (patch)
tree463b69c3b2ea6f697506be055622229767dfebc4 /src/driver.h
parent36e71c8df6fe1f4c303d98b609bb9cdd0c4b7e75 (diff)
downloadopenttd-0d99b6c71cd096599b4805d230483f3e4e958af1.tar.xz
(svn r16421) -Codechange: do not unnecessarily remove constness or unnecessarily add it.
Diffstat (limited to 'src/driver.h')
-rw-r--r--src/driver.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/driver.h b/src/driver.h
index b2a359b97..d4f520e66 100644
--- a/src/driver.h
+++ b/src/driver.h
@@ -80,7 +80,7 @@ public:
}
}
- static const Driver *SelectDriver(const char *name, Driver::Type type);
+ static Driver *SelectDriver(const char *name, Driver::Type type);
static char *GetDriversInfo(char *p, const char *last);
/**