Remove const in path.cpp (missed in r5320)

Originally committed to SVN as r5321.
This commit is contained in:
Amar Takhar 2011-02-08 03:53:34 +00:00
parent bf05289495
commit 961c1245f7
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ void Path::ListSet(const char *name, std::vector<std::string> list) {
}
const void Path::Decode(std::string &path) {
void Path::Decode(std::string &path) {
if (path[0] != 94) // "^"
return;
try {