+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
// 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>
}
_GLIBCXX_END_NAMESPACE
-} // Namespace std::tr1
+} // namespace std::tr1
-#endif /* GNU_LIBSTDCXX_TR1_HASHTABLE_ */
+#endif // _TR1_HASHTABLE
// 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
#include <tr1/random.tcc>
-#endif // _STD_TR1_RANDOM
+#endif // _TR1_RANDOM
* 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>
_GLIBCXX_END_NAMESPACE
}
-#endif /* GNU_LIBSTDCXX_TR1_UNORDERED_MAP_ */
+#endif // _TR1_UNORDERED_MAP
* 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>
_GLIBCXX_END_NAMESPACE
}
-#endif /* GNU_LIBSTDCXX_TR1_UNORDERED_SET_ */
+#endif // _TR1_UNORDERED_SET