Skip to content

Commit

Permalink
Why oh why...
Browse files Browse the repository at this point in the history
  • Loading branch information
ThePhD committed Sep 22, 2016
1 parent dc000fb commit 508d21c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions examples/usertype_simple.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,13 @@ g.data = mdata.third
list3 = g:generate_list()
print("From lua: ")
for i, v in list1 do
for i = 1, #list1 do
print("\tlist1[" .. i .. "] = " .. list1[i])
end
for i, v in list2 do
for i = 1, #list2 do
print("\tlist2[" .. i .. "] = " .. list2[i])
end
for i, #t in list3 do
for i = 1, #list3 do
print("\tlist3[" .. i .. "] = " .. list3[i])
end
Expand Down
4 changes: 2 additions & 2 deletions single/sol/sol.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

// This file was generated with a script.
// Generated 2016-09-22 15:48:51.139867 UTC
// This header was generated with sol v2.14.2 (revision 3a00ce0)
// Generated 2016-09-22 16:13:14.308519 UTC
// This header was generated with sol v2.14.2 (revision dc000fb)
// https://github.com/ThePhD/sol2

#ifndef SOL_SINGLE_INCLUDE_HPP
Expand Down

0 comments on commit 508d21c

Please sign in to comment.