Home
last modified time | relevance | path

Searched refs:LUABIND_NOEXCEPT (Results 1 – 5 of 5) sorted by relevance

/dports/games/valyriatear/ValyriaTear-1.1.0/src/luabind/luabind/
H A Derror.hpp54 lua_State* state() const LUABIND_NOEXCEPT { return m_L; } in state()
55 virtual const char* what() const LUABIND_NOEXCEPT in what()
70 lua_State* state() const LUABIND_NOEXCEPT { return m_L; } in state()
71 type_id info() const LUABIND_NOEXCEPT { return m_info; } in info()
72 virtual const char* what() const LUABIND_NOEXCEPT { return "unable to make cast"; } in what()
H A Dconfig.hpp146 #ifndef LUABIND_NOEXCEPT
148 # define LUABIND_NOEXCEPT BOOST_NOEXCEPT_OR_NOTHROW macro
150 # define LUABIND_NOEXCEPT noexcept macro
152 # define LUABIND_NOEXCEPT throw() macro
/dports/games/valyriatear/ValyriaTear-1.1.0/src/luabind/luabind/detail/
H A Dclass_rep.hpp93 const std::vector<class_rep*>& bases() const LUABIND_NOEXCEPT { return m_bases; } in bases()
96 type_id const& type() const LUABIND_NOEXCEPT { return m_type; } in type()
98 const char* name() const LUABIND_NOEXCEPT { return m_name; } in name()
101 int metatable_ref() const LUABIND_NOEXCEPT { return m_instance_metatable; } in metatable_ref()
/dports/games/valyriatear/ValyriaTear-1.1.0/src/luabind/test/
H A Dtest_exceptions.cpp32 virtual ~ex() LUABIND_NOEXCEPT {} in ~ex()
33 virtual const char* what() const LUABIND_NOEXCEPT { return msg; } in what()
H A Dtest_exception_handlers.cpp20 char const* what() const LUABIND_NOEXCEPT in what()