argv should not be modified; make it plenty const.

svn-id: r39591
This commit is contained in:
Marcus Comstedt 2009-03-21 16:07:46 +00:00
parent e3ca4afb59
commit bce96bd55d
5 changed files with 6 additions and 6 deletions

View file

@ -32,7 +32,7 @@
namespace Base {
void registerDefaults();
Common::String parseCommandLine(Common::StringMap &settings, int argc, char **argv);
Common::String parseCommandLine(Common::StringMap &settings, int argc, const char * const *argv);
bool processSettings(Common::String &command, Common::StringMap &settings);
} // End of namespace Base