Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
halo
ndk
Commits
47fa71ec
Commit
47fa71ec
authored
11 years ago
by
Logan Chien
Browse files
Options
Download
Email Patches
Plain Diff
[gabi++] Fix: exception specifier should come before the attributes.
Change-Id: I06a84dca33253f6871d461d1587ebb94bccb46a7
parent
06fdfd61
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
sources/cxx-stl/gabi++/include/exception
sources/cxx-stl/gabi++/include/exception
+2
-2
No files found.
sources/cxx-stl/gabi++/include/exception
View file @
47fa71ec
...
...
@@ -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_NO
RETURN _GABIXX_NO
EXCEPT_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_NO
RETURN _GABIXX_NO
EXCEPT_CXX11_ONLY;
void unexpected() _GABIXX_NOEXCEPT_CXX11_ONLY
_GABIXX_NORETURN
;
bool uncaught_exception() _GABIXX_NOEXCEPT;
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment