random: Make include guards consistent.

2006-07-21  Benjamin Kosnik  <bkoz@redhat.com>

	* include/tr1/random: Make include guards consistent.
	* include/tr1/unordered_map: Same.
	* include/tr1/hashtable: Same.
	* include/tr1/unordered_set: Same.

From-SVN: r115656
This commit is contained in:
Benjamin Kosnik 2006-07-21 23:54:41 +00:00 committed by Benjamin Kosnik
parent 303f32ccd7
commit 76b4581d09
5 changed files with 20 additions and 13 deletions

View File

@ -1,3 +1,10 @@
2006-07-21 Benjamin Kosnik <bkoz@redhat.com>
* include/tr1/random: Make include guards consistent.
* include/tr1/unordered_map: Same.
* include/tr1/hashtable: Same.
* include/tr1/unordered_set: Same.
2006-07-21 Steve Ellcey <sje@cup.hp.com>
PR target/26792

View File

@ -51,8 +51,8 @@
// A. Tavori and V. Dreizin, "Generic Associative Containers", 2004.
// ??? Full citation?
#ifndef GNU_LIBSTDCXX_TR1_HASHTABLE_
#define GNU_LIBSTDCXX_TR1_HASHTABLE_
#ifndef _TR1_HASHTABLE
#define _TR1_HASHTABLE 1
#include <utility> // For std::pair
#include <memory>
@ -1957,7 +1957,7 @@ _GLIBCXX_BEGIN_NAMESPACE(tr1)
}
_GLIBCXX_END_NAMESPACE
} // Namespace std::tr1
} // namespace std::tr1
#endif /* GNU_LIBSTDCXX_TR1_HASHTABLE_ */
#endif // _TR1_HASHTABLE

View File

@ -27,8 +27,8 @@
// invalidate any other reasons why the executable file might be covered by
// the GNU General Public License.
#ifndef _STD_TR1_RANDOM
#define _STD_TR1_RANDOM 1
#ifndef _TR1_RANDOM
#define _TR1_RANDOM 1
/**
* @file
@ -2046,4 +2046,4 @@ _GLIBCXX_END_NAMESPACE
#include <tr1/random.tcc>
#endif // _STD_TR1_RANDOM
#endif // _TR1_RANDOM

View File

@ -31,8 +31,8 @@
* This is a TR1 C++ Library header.
*/
#ifndef GNU_LIBSTDCXX_TR1_UNORDERED_MAP_
#define GNU_LIBSTDCXX_TR1_UNORDERED_MAP_
#ifndef _TR1_UNORDERED_MAP
#define _TR1_UNORDERED_MAP 1
#include <tr1/hashtable>
#include <tr1/functional>
@ -164,4 +164,4 @@ _GLIBCXX_BEGIN_NAMESPACE(tr1)
_GLIBCXX_END_NAMESPACE
}
#endif /* GNU_LIBSTDCXX_TR1_UNORDERED_MAP_ */
#endif // _TR1_UNORDERED_MAP

View File

@ -31,8 +31,8 @@
* This is a TR1 C++ Library header.
*/
#ifndef GNU_LIBSTDCXX_TR1_UNORDERED_SET_
#define GNU_LIBSTDCXX_TR1_UNORDERED_SET_
#ifndef _TR1_UNORDERED_SET
#define _TR1_UNORDERED_SET 1
#include <tr1/hashtable>
#include <tr1/functional>
@ -160,4 +160,4 @@ _GLIBCXX_BEGIN_NAMESPACE(tr1)
_GLIBCXX_END_NAMESPACE
}
#endif /* GNU_LIBSTDCXX_TR1_UNORDERED_SET_ */
#endif // _TR1_UNORDERED_SET