diff options
author | chai <chaifix@163.com> | 2018-08-01 20:28:19 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2018-08-01 20:28:19 +0800 |
commit | 2f595dccbf1657ad7e2a502bf72b15dcfe74b8c7 (patch) | |
tree | 5ac56041f039dc4c6dd9af6f8aa3765361c495b5 /src/lua/math/luaopen_math.cpp | |
parent | 7398463cd602c4b355f5b25ecf3049489ec14ea6 (diff) |
*update
Diffstat (limited to 'src/lua/math/luaopen_math.cpp')
-rw-r--r-- | src/lua/math/luaopen_math.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/lua/math/luaopen_math.cpp b/src/lua/math/luaopen_math.cpp index ea169e3..98abeab 100644 --- a/src/lua/math/luaopen_math.cpp +++ b/src/lua/math/luaopen_math.cpp @@ -61,13 +61,13 @@ namespace jin } static const luaL_Reg f[] = { - { "and", l_and }, - { "or" , l_or }, - { "xor", l_xor }, - { "not", l_not }, - { "lshift", l_lshift }, - { "rshift", l_rshift }, - { "inc", l_include}, + { "AND", l_and }, + { "OR" , l_or }, + { "XOR", l_xor }, + { "NOT", l_not }, + { "LSHIFT", l_lshift }, + { "RSHIFT", l_rshift }, + { "INC", l_include}, { 0, 0 } }; |