aboutsummaryrefslogtreecommitdiff
path: root/lvm.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2018-02-19 17:06:56 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2018-02-19 17:06:56 -0300
commit1afd5a152dc8b3a304236dc4e07bca38ea5eb53a (patch)
tree7c4f880b09a023a3fe527d7d2cbcec9f11c09302 /lvm.h
parent422318f6777d8d3bac13ade797d9c8eaa38686b6 (diff)
downloadlua-1afd5a152dc8b3a304236dc4e07bca38ea5eb53a.tar.gz
lua-1afd5a152dc8b3a304236dc4e07bca38ea5eb53a.tar.bz2
lua-1afd5a152dc8b3a304236dc4e07bca38ea5eb53a.zip
more generic way to handle 'gclist'
Diffstat (limited to 'lvm.h')
-rw-r--r--lvm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lvm.h b/lvm.h
index 0d2eed14..2cc4130a 100644
--- a/lvm.h
+++ b/lvm.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lvm.h,v 2.47 2017/11/08 14:50:23 roberto Exp roberto $ 2** $Id: lvm.h,v 2.48 2017/11/29 13:02:17 roberto Exp roberto $
3** Lua virtual machine 3** Lua virtual machine
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -96,7 +96,7 @@
96*/ 96*/
97#define luaV_finishfastset(L,t,slot,v) \ 97#define luaV_finishfastset(L,t,slot,v) \
98 { setobj2t(L, cast(TValue *,slot), v); \ 98 { setobj2t(L, cast(TValue *,slot), v); \
99 luaC_barrierback(L, hvalue(t), v); } 99 luaC_barrierback(L, gcvalue(t), v); }
100 100
101 101
102 102