mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-02-21 00:39:58 +00:00
Do not use const
This commit is contained in:
parent
685c02bd73
commit
3c0c699e42
@ -60,7 +60,7 @@ namespace
|
||||
|
||||
namespace MWLua
|
||||
{
|
||||
std::string_view getSpecialization(const int32_t val)
|
||||
std::string_view getSpecialization(int32_t val)
|
||||
{
|
||||
if (val == ESM::Class::Stealth)
|
||||
return "stealth";
|
||||
|
@ -7,7 +7,7 @@ namespace MWLua
|
||||
{
|
||||
struct Context;
|
||||
|
||||
std::string_view getSpecialization(const int32_t val);
|
||||
std::string_view getSpecialization(int32_t val);
|
||||
void addActorStatsBindings(sol::table& actor, const Context& context);
|
||||
void addNpcStatsBindings(sol::table& npc, const Context& context);
|
||||
sol::table initCoreStatsBindings(const Context& context);
|
||||
|
Loading…
x
Reference in New Issue
Block a user