efl/src/bindings/cxx/eina_cxx/eina_throw.hh

10 lines
152 B
C++

#ifndef EFL_CXX_THROW
#ifdef EFL_CXX_NO_EXCEPTIONS
# define EFL_CXX_THROW(x) std::abort()
#else
# define EFL_CXX_THROW(x) throw x
#endif
#endif