diff options
Diffstat (limited to 'src/lua/bit/luaopen_bit.cpp')
-rw-r--r-- | src/lua/bit/luaopen_bit.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/lua/bit/luaopen_bit.cpp b/src/lua/bit/luaopen_bit.cpp index d6c8197..9610a84 100644 --- a/src/lua/bit/luaopen_bit.cpp +++ b/src/lua/bit/luaopen_bit.cpp @@ -63,13 +63,13 @@ namespace lua } static const luaL_Reg f[] = { - { "AND", l_and }, - { "OR" , l_or }, - { "XOR", l_xor }, - { "NOT", l_not }, - { "LS", l_lshift }, - { "RS", l_rshift }, - { "INC", l_include }, + { "bAnd", l_and }, + { "bOr" , l_or }, + { "bXor", l_xor }, + { "bNot", l_not }, + { "bLs", l_lshift }, + { "bRs", l_rshift }, + { "bInc", l_include }, // , offset |