mirror of
https://github.com/OpenMW/openmw.git
synced 2025-06-19 07:11:33 +00:00
keep non-const signature for argv after conversion
This commit is contained in:
parent
46c32f6c47
commit
9dbe3f21d9
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
~utf8argv() { delete[] argv; }
|
~utf8argv() { delete[] argv; }
|
||||||
const char * const *get() const { return argv; }
|
char **get() const { return const_cast<char **>(argv); }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue