Skip to content

LuaState 2.0

Compare
Choose a tag to compare
@AdUki AdUki released this 31 May 15:05
· 23 commits to master since this release
  • Removed shared_ptr from lua::Value, lua::State, lua::Ref. If you want to use them, you still can while creating those objects.
  • Implemented copy assingment and constructor with shared_ptr<lua::StackItem> which handles deallocation of values from Lua C API stack (instead of my own reference counting)
  • Added support of older versions of gcc and VS 2012 (anything that has move operators and variadic templates)
  • You can query elements from lua::State functions doString and doFile
  • Cleaner code