SWORD25: Const correctness
This commit is contained in:
parent
2068bc1527
commit
a2f16d9155
1 changed files with 1 additions and 1 deletions
|
@ -177,7 +177,7 @@ bool LuaScriptEngine::executeFile(const Common::String &fileName) {
|
||||||
}
|
}
|
||||||
|
|
||||||
bool LuaScriptEngine::executeString(const Common::String &code) {
|
bool LuaScriptEngine::executeString(const Common::String &code) {
|
||||||
return executeBuffer((byte *)code.c_str(), code.size(), "???");
|
return executeBuffer((const byte *)code.c_str(), code.size(), "???");
|
||||||
}
|
}
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue