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:
Chris Lattner 2003-08-27 22:58:51 +00:00
parent 0e807bd26b
commit 7a37fa7e28
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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