Skip to content

Commit

Permalink
Update luabind (switch back to xray branch).
Browse files Browse the repository at this point in the history
  • Loading branch information
nitrocaster committed Feb 24, 2017
1 parent 41c5da6 commit 060ceaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Externals/luabind
Submodule luabind updated 61 files
+8 −1 .gitignore
+1 −1 CMakeLists.txt
+4 −1 README.md
+6 −4 luabind/adopt_policy.hpp
+38 −26 luabind/class.hpp
+1 −1 luabind/class_info.hpp
+16 −0 luabind/config.hpp
+5 −2 luabind/container_policy.hpp
+5 −4 luabind/copy_policy.hpp
+7 −5 luabind/dependency_policy.hpp
+2 −2 luabind/detail/call.hpp
+1 −1 luabind/detail/call_function.hpp
+2 −2 luabind/detail/class_registry.hpp
+9 −4 luabind/detail/class_rep.hpp
+1 −1 luabind/detail/constructor.hpp
+1 −1 luabind/detail/conversion_policies/conversion_base.hpp
+37 −12 luabind/detail/conversion_policies/native_converter.hpp
+3 −6 luabind/detail/enum_maker.hpp
+9 −4 luabind/detail/format_signature.hpp
+3 −3 luabind/detail/inheritance.hpp
+3 −3 luabind/detail/make_instance.hpp
+2 −1 luabind/detail/object_rep.hpp
+8 −2 luabind/detail/policy.hpp
+4 −1 luabind/discard_result_policy.hpp
+8 −2 luabind/error.hpp
+1 −1 luabind/exception_handler.hpp
+5 −5 luabind/function.hpp
+6 −4 luabind/iterator_policy.hpp
+56 −0 luabind/lua_extensions.hpp
+2 −2 luabind/lua_proxy_interface.hpp
+13 −9 luabind/make_function.hpp
+87 −0 luabind/memory.hpp
+165 −0 luabind/memory_allocator.hpp
+4 −2 luabind/operator.hpp
+17 −12 luabind/out_value_policy.hpp
+4 −4 luabind/pointer_traits.hpp
+5 −3 luabind/raw_policy.hpp
+5 −2 luabind/return_reference_to_policy.hpp
+3 −3 luabind/scope.hpp
+38 −0 luabind/types.hpp
+2 −2 luabind/wrapper_base.hpp
+4 −1 luabind/yield_policy.hpp
+14 −0 src/.gitignore
+34 −18 src/class.cpp
+2 −2 src/class_info.cpp
+1 −1 src/class_registry.cpp
+3 −3 src/class_rep.cpp
+32 −3 src/create_class.cpp
+4 −0 src/error.cpp
+37 −11 src/function.cpp
+1 −1 src/function_introspection.cpp
+11 −13 src/inheritance.cpp
+437 −0 src/luabind.vcxproj
+389 −0 src/luabind.vcxproj.filters
+10 −0 src/memory.cpp
+3 −3 src/object_rep.cpp
+9 −9 src/scope.cpp
+2 −2 src/stack_content_by_name.cpp
+2 −2 src/weak_ref.cpp
+1 −3 test/test_function_introspection.cpp
+6 −6 test/test_object.cpp

0 comments on commit 060ceaa

Please sign in to comment.