update single and ver

This commit is contained in:
ThePhD 2017-08-31 21:05:30 -04:00
parent 54bcda140c
commit 0d48e65ad1
2 changed files with 5 additions and 5 deletions

View File

@ -61,7 +61,7 @@ author = 'ThePhD'
# The short X.Y version.
version = '2.18'
# The full version, including alpha/beta/rc tags.
release = '2.18.1'
release = '2.18.2'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@ -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-09-01 00:38:40.996447 UTC
// This header was generated with sol v2.18.1 (revision 3549bfa)
// Generated 2017-09-01 01:02:04.624150 UTC
// This header was generated with sol v2.18.2 (revision 54bcda1)
// https://github.com/ThePhD/sol2
#ifndef SOL_SINGLE_INCLUDE_HPP
@ -5051,13 +5051,13 @@ namespace sol {
const type_panic_t type_panic = {};
struct constructor_handler {
int operator()(lua_State* L, int index, type expected, type actual, const std::string& message) noexcept(false) {
int operator()(lua_State* L, int index, type expected, type actual, const std::string& message) const noexcept(false) {
return type_panic_string(L, index, expected, actual, message + " (type check failed in constructor)");
}
};
struct argument_handler {
int operator()(lua_State* L, int index, type expected, type actual, const std::string& message) noexcept(false) {
int operator()(lua_State* L, int index, type expected, type actual, const std::string& message) const noexcept(false) {
return type_panic_string(L, index, expected, actual, message + " (bad argument to variable or function call)");
}
};