aboutsummaryrefslogtreecommitdiff
path: root/deep_test/deep_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'deep_test/deep_test.cpp')
-rw-r--r--deep_test/deep_test.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/deep_test/deep_test.cpp b/deep_test/deep_test.cpp
index bbae48e..d7ecd33 100644
--- a/deep_test/deep_test.cpp
+++ b/deep_test/deep_test.cpp
@@ -8,9 +8,8 @@
8// ################################################################################################ 8// ################################################################################################
9 9
10// a lanes-deep userdata. needs DeepPrelude and luaG_newdeepuserdata from Lanes code. 10// a lanes-deep userdata. needs DeepPrelude and luaG_newdeepuserdata from Lanes code.
11struct MyDeepUserdata 11struct MyDeepUserdata : public DeepPrelude // Deep userdata MUST start with a DeepPrelude
12{ 12{
13 DeepPrelude prelude; // Deep userdata MUST start with this header
14 lua_Integer val{ 0 }; 13 lua_Integer val{ 0 };
15}; 14};
16 15