Skip to content

Commit

Permalink
Avoid Lua garbage collection. See #62
Browse files Browse the repository at this point in the history
  • Loading branch information
ryobg committed Sep 27, 2019
1 parent fc35ea5 commit f8c356d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
image: Visual Studio 2017
version: '4.1.9.{build}'
version: '4.1.10.{build}'
platform: x64
branches:
only:
Expand Down
2 changes: 1 addition & 1 deletion src/Data/SKSE/Plugins/JCData/InternalLuaScripts/jc.lua
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ local function returnLuaValue(item)
elseif tp == JCValueType.real then
v = item.real
elseif tp == JCValueType.form then
v = item.form
v = CForm(item.form)
elseif tp == JCValueType.object then
v = wrapJCHandle(item.object)
end
Expand Down
2 changes: 1 addition & 1 deletion src/JContainers/src/jcontainers_constants.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace collections {

# define JC_API_VERSION 4
# define JC_FEATURE_VERSION 1
# define JC_PATCH_VERSION 9
# define JC_PATCH_VERSION 10

# define JC_FILE_VERSION JC_API_VERSION, JC_FEATURE_VERSION, JC_PATCH_VERSION, 0

Expand Down

0 comments on commit f8c356d

Please sign in to comment.