Module Name: src
Committed By: joerg
Date: Sat Jan 28 14:21:52 UTC 2012
Modified Files:
src/external/gpl3/gcc/dist/libstdc++-v3/libsupc++: exception_ptr.h
Log Message:
Merge r171807 from upstream:
exception_ptr.h needs the forward declaration because it's
included from <typeinfo> before <typeinfo> defines std::type_info.
To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r1.2 \
src/external/gpl3/gcc/dist/libstdc++-v3/libsupc++/exception_ptr.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/gpl3/gcc/dist/libstdc++-v3/libsupc++/exception_ptr.h
diff -u src/external/gpl3/gcc/dist/libstdc++-v3/libsupc++/exception_ptr.h:1.1.1.1 src/external/gpl3/gcc/dist/libstdc++-v3/libsupc++/exception_ptr.h:1.2
--- src/external/gpl3/gcc/dist/libstdc++-v3/libsupc++/exception_ptr.h:1.1.1.1 Tue Jun 21 01:24:47 2011
+++ src/external/gpl3/gcc/dist/libstdc++-v3/libsupc++/exception_ptr.h Sat Jan 28 14:21:52 2012
@@ -129,7 +129,7 @@ namespace std
operator==(const exception_ptr&, const exception_ptr&) throw()
__attribute__ ((__pure__));
- const type_info*
+ const class type_info*
__cxa_exception_type() const throw() __attribute__ ((__pure__));
};