Skip to content

Commit

Permalink
forgot return type: update single
Browse files Browse the repository at this point in the history
  • Loading branch information
ThePhD committed Jan 7, 2017
1 parent 38ba441 commit 658a11a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 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 2017-01-07 05:45:36.396684 UTC
// This header was generated with sol v2.15.7 (revision 764b2ad)
// Generated 2017-01-07 06:10:50.767685 UTC
// This header was generated with sol v2.15.7 (revision 38ba441)
// https://github.com/ThePhD/sol2

#ifndef SOL_SINGLE_INCLUDE_HPP
Expand Down Expand Up @@ -9670,7 +9670,7 @@ namespace sol {
const_reverse_iterator crend() const { return std::reverse_iterator<const_iterator>(cend()); }

int push() const {
push(L);
return push(L);
}

int push(lua_State* target) const {
Expand Down
2 changes: 1 addition & 1 deletion sol/variadic_args.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ namespace sol {
const_reverse_iterator crend() const { return std::reverse_iterator<const_iterator>(cend()); }

int push() const {
push(L);
return push(L);
}

int push(lua_State* target) const {
Expand Down

0 comments on commit 658a11a

Please sign in to comment.