aboutsummaryrefslogtreecommitdiff
path: root/src/3rdParty/lua/lobject.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdParty/lua/lobject.h')
-rw-r--r--src/3rdParty/lua/lobject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/3rdParty/lua/lobject.h b/src/3rdParty/lua/lobject.h
index 950bebb..a1b4554 100644
--- a/src/3rdParty/lua/lobject.h
+++ b/src/3rdParty/lua/lobject.h
@@ -112,7 +112,7 @@ typedef struct TValue {
112#define settt_(o,t) ((o)->tt_=(t)) 112#define settt_(o,t) ((o)->tt_=(t))
113 113
114 114
115/* main macro to copy values (from 'obj1' to 'obj2') */ 115/* main macro to copy values (from 'obj2' to 'obj1') */
116#define setobj(L,obj1,obj2) \ 116#define setobj(L,obj1,obj2) \
117 { TValue *io1=(obj1); const TValue *io2=(obj2); \ 117 { TValue *io1=(obj1); const TValue *io2=(obj2); \
118 io1->value_ = io2->value_; settt_(io1, io2->tt_); \ 118 io1->value_ = io2->value_; settt_(io1, io2->tt_); \