diff options
author | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-10-10 21:54:41 +0000 |
---|---|---|
committer | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-10-10 21:54:41 +0000 |
commit | 2cf9260fed736d58b913d6289dbe0c849d8a3414 (patch) | |
tree | a216fa29f73211c109c11aac58d04e044d31781f /libstdc++-v3/include/bits/functexcept.h | |
parent | d753ca1fedf49593c6b4620a197933e8ec877ad3 (diff) | |
download | ppe42-gcc-2cf9260fed736d58b913d6289dbe0c849d8a3414.tar.gz ppe42-gcc-2cf9260fed736d58b913d6289dbe0c849d8a3414.zip |
2004-10-10 Benjamin Kosnik <bkoz@redhat.com>
* include/bits/functexcept.h: Add guards.
* acinclude.m4 (GLIBCXX_ENABLE_THREADS): Tweak test.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@88857 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/include/bits/functexcept.h')
-rw-r--r-- | libstdc++-v3/include/bits/functexcept.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libstdc++-v3/include/bits/functexcept.h b/libstdc++-v3/include/bits/functexcept.h index 8b1d16c8e59..9e8054ce68a 100644 --- a/libstdc++-v3/include/bits/functexcept.h +++ b/libstdc++-v3/include/bits/functexcept.h @@ -1,6 +1,6 @@ // Function-Based Exception Support -*- C++ -*- -// Copyright (C) 2001 Free Software Foundation, Inc. +// Copyright (C) 2001, 2004 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -31,6 +31,9 @@ // ISO C++ 14882: 19.1 Exception classes // +#ifndef _FUNCTEXCEPT_H +#define _FUNCTEXCEPT_H 1 + #include <exception_defines.h> namespace std @@ -83,3 +86,4 @@ namespace std __throw_ios_failure(const char* __s); } // namespace std +#endif |