mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-30 06:40:53 +00:00
Add throw specs to the functions, remove (void) from the functions
llvm-svn: 8167
This commit is contained in:
parent
9a51349ec0
commit
2e1c6a7abf
@ -42,8 +42,8 @@ enum {
|
||||
// Language independent exception handling API...
|
||||
//
|
||||
extern "C" {
|
||||
bool __llvm_eh_has_uncaught_exception(void);
|
||||
void *__llvm_eh_current_uncaught_exception_type(unsigned HandlerType);
|
||||
bool __llvm_eh_has_uncaught_exception() throw();
|
||||
void *__llvm_eh_current_uncaught_exception_type(unsigned HandlerType) throw();
|
||||
}
|
||||
|
||||
#endif
|
||||
|
@ -42,8 +42,8 @@ enum {
|
||||
// Language independent exception handling API...
|
||||
//
|
||||
extern "C" {
|
||||
bool __llvm_eh_has_uncaught_exception(void);
|
||||
void *__llvm_eh_current_uncaught_exception_type(unsigned HandlerType);
|
||||
bool __llvm_eh_has_uncaught_exception() throw();
|
||||
void *__llvm_eh_current_uncaught_exception_type(unsigned HandlerType) throw();
|
||||
}
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user