Commit 76b4581d by Benjamin Kosnik Committed by Benjamin Kosnik

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
parent 303f32cc
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> 2006-07-21 Steve Ellcey <sje@cup.hp.com>
PR target/26792 PR target/26792
......
...@@ -51,8 +51,8 @@ ...@@ -51,8 +51,8 @@
// A. Tavori and V. Dreizin, "Generic Associative Containers", 2004. // A. Tavori and V. Dreizin, "Generic Associative Containers", 2004.
// ??? Full citation? // ??? Full citation?
#ifndef GNU_LIBSTDCXX_TR1_HASHTABLE_ #ifndef _TR1_HASHTABLE
#define GNU_LIBSTDCXX_TR1_HASHTABLE_ #define _TR1_HASHTABLE 1
#include <utility> // For std::pair #include <utility> // For std::pair
#include <memory> #include <memory>
...@@ -1957,7 +1957,7 @@ _GLIBCXX_BEGIN_NAMESPACE(tr1) ...@@ -1957,7 +1957,7 @@ _GLIBCXX_BEGIN_NAMESPACE(tr1)
} }
_GLIBCXX_END_NAMESPACE _GLIBCXX_END_NAMESPACE
} // Namespace std::tr1 } // namespace std::tr1
#endif /* GNU_LIBSTDCXX_TR1_HASHTABLE_ */ #endif // _TR1_HASHTABLE
...@@ -27,8 +27,8 @@ ...@@ -27,8 +27,8 @@
// invalidate any other reasons why the executable file might be covered by // invalidate any other reasons why the executable file might be covered by
// the GNU General Public License. // the GNU General Public License.
#ifndef _STD_TR1_RANDOM #ifndef _TR1_RANDOM
#define _STD_TR1_RANDOM 1 #define _TR1_RANDOM 1
/** /**
* @file * @file
...@@ -2046,4 +2046,4 @@ _GLIBCXX_END_NAMESPACE ...@@ -2046,4 +2046,4 @@ _GLIBCXX_END_NAMESPACE
#include <tr1/random.tcc> #include <tr1/random.tcc>
#endif // _STD_TR1_RANDOM #endif // _TR1_RANDOM
...@@ -31,8 +31,8 @@ ...@@ -31,8 +31,8 @@
* This is a TR1 C++ Library header. * This is a TR1 C++ Library header.
*/ */
#ifndef GNU_LIBSTDCXX_TR1_UNORDERED_MAP_ #ifndef _TR1_UNORDERED_MAP
#define GNU_LIBSTDCXX_TR1_UNORDERED_MAP_ #define _TR1_UNORDERED_MAP 1
#include <tr1/hashtable> #include <tr1/hashtable>
#include <tr1/functional> #include <tr1/functional>
...@@ -164,4 +164,4 @@ _GLIBCXX_BEGIN_NAMESPACE(tr1) ...@@ -164,4 +164,4 @@ _GLIBCXX_BEGIN_NAMESPACE(tr1)
_GLIBCXX_END_NAMESPACE _GLIBCXX_END_NAMESPACE
} }
#endif /* GNU_LIBSTDCXX_TR1_UNORDERED_MAP_ */ #endif // _TR1_UNORDERED_MAP
...@@ -31,8 +31,8 @@ ...@@ -31,8 +31,8 @@
* This is a TR1 C++ Library header. * This is a TR1 C++ Library header.
*/ */
#ifndef GNU_LIBSTDCXX_TR1_UNORDERED_SET_ #ifndef _TR1_UNORDERED_SET
#define GNU_LIBSTDCXX_TR1_UNORDERED_SET_ #define _TR1_UNORDERED_SET 1
#include <tr1/hashtable> #include <tr1/hashtable>
#include <tr1/functional> #include <tr1/functional>
...@@ -160,4 +160,4 @@ _GLIBCXX_BEGIN_NAMESPACE(tr1) ...@@ -160,4 +160,4 @@ _GLIBCXX_BEGIN_NAMESPACE(tr1)
_GLIBCXX_END_NAMESPACE _GLIBCXX_END_NAMESPACE
} }
#endif /* GNU_LIBSTDCXX_TR1_UNORDERED_SET_ */ #endif // _TR1_UNORDERED_SET
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment