mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-10 15:39:02 +00:00
keep non-const signature for argv after conversion
This commit is contained in:
parent
46c32f6c47
commit
9dbe3f21d9
@ -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 New Issue
Block a user