From be839bdcd2e33c7078b8c5046be085d1fbf8d30f Mon Sep 17 00:00:00 2001 From: ThePhD Date: Sun, 27 Apr 2014 09:13:45 -0400 Subject: [PATCH] We no longer need the `register_into(const table& s)` function: removing~ --- sol/userdata.hpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/sol/userdata.hpp b/sol/userdata.hpp index 381c37e2..2976d09e 100644 --- a/sol/userdata.hpp +++ b/sol/userdata.hpp @@ -144,8 +144,6 @@ public: template userdata(const char* name, constructors c, Args&&... args) : userdata(std::string(name), std::move(c), std::forward(args)...) {} - - void register_into(const table& s) {} }; } // sol