Commit 47fa71ec authored by Logan Chien's avatar Logan Chien
Browse files

[gabi++] Fix: exception specifier should come before the attributes.

Change-Id: I06a84dca33253f6871d461d1587ebb94bccb46a7
parent 06fdfd61
......@@ -51,12 +51,12 @@ namespace std {
typedef void (*terminate_handler)();
terminate_handler get_terminate() _GABIXX_NOEXCEPT;
terminate_handler set_terminate(terminate_handler f) _GABIXX_NOEXCEPT;
void terminate() _GABIXX_NORETURN _GABIXX_NOEXCEPT_CXX11_ONLY;
void terminate() _GABIXX_NOEXCEPT_CXX11_ONLY _GABIXX_NORETURN;
typedef void (*unexpected_handler)();
unexpected_handler get_unexpected() _GABIXX_NOEXCEPT;
unexpected_handler set_unexpected(unexpected_handler f) _GABIXX_NOEXCEPT;
void unexpected() _GABIXX_NORETURN _GABIXX_NOEXCEPT_CXX11_ONLY;
void unexpected() _GABIXX_NOEXCEPT_CXX11_ONLY _GABIXX_NORETURN;
bool uncaught_exception() _GABIXX_NOEXCEPT;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment