mirror of https://github.com/odrling/Aegisub
Remove const in path.cpp (missed in r5320)
Originally committed to SVN as r5321.
This commit is contained in:
parent
bf05289495
commit
961c1245f7
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue