1
0
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:
greye 2014-05-20 10:42:21 +04:00
parent 46c32f6c47
commit 9dbe3f21d9

View File

@ -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: