diff options
| author | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-08-14 01:17:09 +0000 |
|---|---|---|
| committer | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-08-14 01:17:09 +0000 |
| commit | a9335e3657a66bb033a376dfec164730f221d770 (patch) | |
| tree | 19f7ce6744aac513f00fbcecbb637546b8901b38 /libstdc++-v3/libsupc++/exception | |
| parent | a9c45d56cda075d4136d82b1603cf02a6dafdfe0 (diff) | |
| download | ppe42-gcc-a9335e3657a66bb033a376dfec164730f221d770.tar.gz ppe42-gcc-a9335e3657a66bb033a376dfec164730f221d770.zip | |
2008-08-13 Paolo Carlini <paolo.carlini@oracle.com>
Re-instate last patch, amended to use __exchange_and_add_dispatch
and __atomic_add_dispatch in eh_ptr.cc and eh_throw.cc.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@139091 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/libsupc++/exception')
| -rw-r--r-- | libstdc++-v3/libsupc++/exception | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/libstdc++-v3/libsupc++/exception b/libstdc++-v3/libsupc++/exception index a7e2db78dd1..f1288211e98 100644 --- a/libstdc++-v3/libsupc++/exception +++ b/libstdc++-v3/libsupc++/exception @@ -1,7 +1,7 @@ // Exception Handling support header for -*- C++ -*- // Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, -// 2004, 2005, 2006, 2007 +// 2004, 2005, 2006, 2007, 2008 // Free Software Foundation // // This file is part of GCC. @@ -110,6 +110,7 @@ namespace std * result in a call of @c terminate() (15.5.1)." */ bool uncaught_exception() throw(); + } // namespace std _GLIBCXX_BEGIN_NAMESPACE(__gnu_cxx) @@ -132,4 +133,8 @@ _GLIBCXX_END_NAMESPACE #pragma GCC visibility pop +#ifdef __GXX_EXPERIMENTAL_CXX0X__ +#include <exception_ptr.h> +#endif + #endif |

