aboutsummaryrefslogtreecommitdiff
path: root/src/lua/bit/luaopen_bit.cpp
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2018-08-18 17:18:47 +0800
committerchai <chaifix@163.com>2018-08-18 17:18:47 +0800
commit398966630f99329021d4335d819326e27a9d49df (patch)
tree72868e26389f784f4abfb24110ffbd2385d67753 /src/lua/bit/luaopen_bit.cpp
parent2fb51a71e53b4fc7bd4058d3a5a6f39fa81c345a (diff)
*update
Diffstat (limited to 'src/lua/bit/luaopen_bit.cpp')
-rw-r--r--src/lua/bit/luaopen_bit.cpp15
1 files changed, 7 insertions, 8 deletions
diff --git a/src/lua/bit/luaopen_bit.cpp b/src/lua/bit/luaopen_bit.cpp
index 9520909..3b086bb 100644
--- a/src/lua/bit/luaopen_bit.cpp
+++ b/src/lua/bit/luaopen_bit.cpp
@@ -63,15 +63,14 @@ namespace lua
}
static const luaL_Reg f[] = {
- { "bAnd", l_and },
- { "bOr" , l_or },
- { "bXor", l_xor },
- { "bNot", l_not },
- { "bLs", l_lshift },
- { "bRs", l_rshift },
+ { "bAnd", l_and },
+ { "bOr" , l_or },
+ { "bXor", l_xor },
+ { "bNot", l_not },
+ { "bLs", l_lshift },
+ { "bRs", l_rshift },
{ "bInc", l_include },
-
- { 0, 0 }
+ { 0, 0 }
};
int luaopen_bit(lua_State* L)