mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-27 13:30:05 +00:00
Add throw specs to the functions, remove (void) from the functions
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8167 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
0e807bd26b
commit
7a37fa7e28
@ -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