[llvm-commits] CVS: llvm/include/Support/hash_map hash_set
Chris Lattner
lattner at cs.uiuc.edu
Fri Jul 25 10:09:08 PDT 2003
Changes in directory llvm/include/Support:
hash_map updated: 1.9 -> 1.10
hash_set updated: 1.9 -> 1.10
---
Log message:
Convert to C++ style comments
---
Diffs of the changes:
Index: llvm/include/Support/hash_map
diff -u llvm/include/Support/hash_map:1.9 llvm/include/Support/hash_map:1.10
--- llvm/include/Support/hash_map:1.9 Fri Jul 25 09:06:13 2003
+++ llvm/include/Support/hash_map Fri Jul 25 10:08:08 2003
@@ -42,8 +42,8 @@
using HASH_NAMESPACE::hash_multimap;
using HASH_NAMESPACE::hash;
-/* Include vector because ext/hash_map includes stl_vector.h and leaves
- out specializations like stl_bvector.h, causing link conflicts. */
+// Include vector because ext/hash_map includes stl_vector.h and leaves
+// out specializations like stl_bvector.h, causing link conflicts.
#include <vector>
#include <Support/HashExtras.h>
Index: llvm/include/Support/hash_set
diff -u llvm/include/Support/hash_set:1.9 llvm/include/Support/hash_set:1.10
--- llvm/include/Support/hash_set:1.9 Fri Jul 25 09:06:13 2003
+++ llvm/include/Support/hash_set Fri Jul 25 10:08:08 2003
@@ -41,8 +41,8 @@
using HASH_NAMESPACE::hash_set;
using HASH_NAMESPACE::hash;
-/* Include vector because ext/hash_set includes stl_vector.h and leaves
- out specializations like stl_bvector.h, causing link conflicts. */
+// Include vector because ext/hash_set includes stl_vector.h and leaves
+// out specializations like stl_bvector.h, causing link conflicts.
#include <vector>
#include <Support/HashExtras.h>
More information about the llvm-commits
mailing list