Remove extra indentation level

This commit is contained in:
Arseny Kapoulkine 2021-11-21 20:11:28 -08:00
parent 609f68492a
commit 1c3095f6dd

View file

@ -79,10 +79,8 @@ static std::string runCode(lua_State* L, const std::string& source)
return std::string();
}
extern "C"
extern "C" const char* executeScript(const char* source)
{
const char* executeScript(const char* source)
{
// setup flags
for (Luau::FValue<bool>* flag = Luau::FValue<bool>::list; flag; flag = flag->next)
if (strncmp(flag->name, "Luau", 4) == 0)
@ -105,5 +103,4 @@ extern "C"
result = runCode(L, source);
return result.empty() ? NULL : result.c_str();
}
}