[llvm-commits] CVS: llvm/runtime/GCCLibraries/libexception/exception.h
Chris Lattner
lattner at cs.uiuc.edu
Wed Aug 27 18:00:02 PDT 2003
Changes in directory llvm/runtime/GCCLibraries/libexception:
exception.h updated: 1.2 -> 1.3
---
Log message:
Add throw specs to the functions, remove (void) from the functions
---
Diffs of the changes:
Index: llvm/runtime/GCCLibraries/libexception/exception.h
diff -u llvm/runtime/GCCLibraries/libexception/exception.h:1.2 llvm/runtime/GCCLibraries/libexception/exception.h:1.3
--- llvm/runtime/GCCLibraries/libexception/exception.h:1.2 Tue Aug 26 23:50:12 2003
+++ llvm/runtime/GCCLibraries/libexception/exception.h Wed Aug 27 17:58:51 2003
@@ -42,8 +42,8 @@
// 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
More information about the llvm-commits
mailing list