// Substitute for concurrence_error object in the case of -fno-exceptions. inline void __throw_illegal_input_error() { #if __EXCEPTIONS throw illegal_input_error(); #else __builtin_abort(); #endif }
// Substitute for concurrence_error object in the case of -fno-exceptions. inline void __throw_illegal_input_error() { _GLIBCXX_THROW_OR_ABORT(illegal_input_error()); }