From 5dc3179e5de938f515da20f178ed0e7e451e4ea4 Mon Sep 17 00:00:00 2001 From: Howard Hinnant Date: Sun, 8 Jan 2012 23:39:14 +0000 Subject: Correct comment regarding members of __cxa_dependent_exception. Actually it is useful to disguise a __cxa_dependent_exception as a __cxa_exception by filling in most (not all) of these members at __cxa_dependent_exception construction time. That way most routines don't have to care which kind of exception they have. llvm-svn: 147759 --- libcxxabi/src/cxa_exception.hpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'libcxxabi/src/cxa_exception.hpp') diff --git a/libcxxabi/src/cxa_exception.hpp b/libcxxabi/src/cxa_exception.hpp index 8f795f0d100..346ed38572b 100644 --- a/libcxxabi/src/cxa_exception.hpp +++ b/libcxxabi/src/cxa_exception.hpp @@ -64,10 +64,8 @@ namespace __cxxabiv1 { void* primaryException; #endif - // Unused dummy data (should be set to null) std::type_info *exceptionType; void (*exceptionDestructor)(void *); - std::unexpected_handler unexpectedHandler; std::terminate_handler terminateHandler; -- cgit v1.2.3