sol2
sol2 copied to clipboard
Excessive noexcept
trafficstars
Hi, I found a function where noexcept breaks catching because an exception can actually occur.
As example: basic_table_iterator& operator++() noexcept shouldn't be noexcept because lua_next in LuaJIT can throw an error.
I assume this isn't the only place where something like this might happen