diff --git a/single/sol/sol.hpp b/single/sol/sol.hpp index b211540d..ceb937d3 100644 --- a/single/sol/sol.hpp +++ b/single/sol/sol.hpp @@ -20,8 +20,8 @@ // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // This file was generated with a script. -// Generated 2017-01-31 02:39:50.081811 UTC -// This header was generated with sol v2.15.7 (revision ee8716f) +// Generated 2017-02-01 11:29:19.754104 UTC +// This header was generated with sol v2.15.7 (revision c7deb82) // https://github.com/ThePhD/sol2 #ifndef SOL_SINGLE_INCLUDE_HPP @@ -3384,6 +3384,8 @@ namespace sol { bitwise_and, bitwise_or, bitwise_xor, + pairs, + next }; typedef meta_function meta_method; @@ -3393,7 +3395,7 @@ namespace sol { "__newindex", } }; - const std::array meta_function_names = { { + const std::array meta_function_names = { { "new", "__index", "__newindex", @@ -3414,6 +3416,17 @@ namespace sol { "__lt", "__le", "__gc", + + "__idiv", + "__shl", + "__shr", + "__bnot", + "__band", + "__bor", + "__bxor", + + "__pairs", + "__next" } }; inline const std::string& name_of(meta_function mf) { diff --git a/sol/types.hpp b/sol/types.hpp index 7d1c3641..ca349a56 100644 --- a/sol/types.hpp +++ b/sol/types.hpp @@ -402,6 +402,8 @@ namespace sol { bitwise_and, bitwise_or, bitwise_xor, + pairs, + next }; typedef meta_function meta_method; @@ -411,7 +413,7 @@ namespace sol { "__newindex", } }; - const std::array meta_function_names = { { + const std::array meta_function_names = { { "new", "__index", "__newindex", @@ -432,6 +434,17 @@ namespace sol { "__lt", "__le", "__gc", + + "__idiv", + "__shl", + "__shr", + "__bnot", + "__band", + "__bor", + "__bxor", + + "__pairs", + "__next" } }; inline const std::string& name_of(meta_function mf) {