[llvm-commits] CVS: llvm/include/Support/DepthFirstIterator.h HashExtras.h MathExtras.h PostOrderIterator.h

Chris Lattner lattner at cs.uiuc.edu
Sun Oct 27 20:12:05 PST 2002


Changes in directory llvm/include/Support:

DepthFirstIterator.h updated: 1.3 -> 1.4
HashExtras.h updated: 1.4 -> 1.5
MathExtras.h updated: 1.4 -> 1.5
PostOrderIterator.h updated: 1.6 -> 1.7

---
Log message:

Don't #include <Support/*>, #include "Support/*"



---
Diffs of the changes:

Index: llvm/include/Support/DepthFirstIterator.h
diff -u llvm/include/Support/DepthFirstIterator.h:1.3 llvm/include/Support/DepthFirstIterator.h:1.4
--- llvm/include/Support/DepthFirstIterator.h:1.3	Wed Jul 24 17:08:36 2002
+++ llvm/include/Support/DepthFirstIterator.h	Sun Oct 27 20:11:16 2002
@@ -9,7 +9,7 @@
 #define LLVM_SUPPORT_DEPTH_FIRST_ITERATOR_H
 
 #include "Support/GraphTraits.h"
-#include <Support/iterator>
+#include "Support/iterator"
 #include <stack>
 #include <set>
 


Index: llvm/include/Support/HashExtras.h
diff -u llvm/include/Support/HashExtras.h:1.4 llvm/include/Support/HashExtras.h:1.5
--- llvm/include/Support/HashExtras.h:1.4	Wed Jul 24 17:19:59 2002
+++ llvm/include/Support/HashExtras.h	Sun Oct 27 20:11:16 2002
@@ -11,7 +11,7 @@
 #define LLVM_SUPPORT_HASHEXTRAS_H
 
 #include <string>
-#include <Support/hash_map>
+#include "Support/hash_map"
 
 // Cannot specialize hash template from outside of the std namespace.
 namespace HASH_NAMESPACE {


Index: llvm/include/Support/MathExtras.h
diff -u llvm/include/Support/MathExtras.h:1.4 llvm/include/Support/MathExtras.h:1.5
--- llvm/include/Support/MathExtras.h:1.4	Tue Sep 17 18:56:50 2002
+++ llvm/include/Support/MathExtras.h	Sun Oct 27 20:11:16 2002
@@ -7,7 +7,7 @@
 #ifndef SUPPORT_MATH_EXTRAS_H
 #define SUPPORT_MATH_EXTRAS_H
 
-#include <Support/DataTypes.h>
+#include "Support/DataTypes.h"
 
 inline unsigned log2(uint64_t C) {
   unsigned getPow;


Index: llvm/include/Support/PostOrderIterator.h
diff -u llvm/include/Support/PostOrderIterator.h:1.6 llvm/include/Support/PostOrderIterator.h:1.7
--- llvm/include/Support/PostOrderIterator.h:1.6	Thu Jul 25 10:00:42 2002
+++ llvm/include/Support/PostOrderIterator.h	Sun Oct 27 20:11:16 2002
@@ -10,7 +10,7 @@
 #define LLVM_SUPPORT_POSTORDER_ITERATOR_H
 
 #include "Support/GraphTraits.h"
-#include <Support/iterator>
+#include "Support/iterator"
 #include <stack>
 #include <set>
 





More information about the llvm-commits mailing list