Add ImmutableMap::getMaxElement(), a method that returns the <key,value> pair in...
[oota-llvm.git] / include / llvm / ADT / SetVector.h
index 7d6bbc78af3c508836e4237aad04c805207b596e..fab133af4c03b1b49b4ae033278bb0d44b6b70dd 100644 (file)
@@ -21,9 +21,9 @@
 #define LLVM_ADT_SETVECTOR_H
 
 #include "llvm/ADT/SmallSet.h"
-#include <vector>
-#include <cassert>
 #include <algorithm>
+#include <cassert>
+#include <vector>
 
 namespace llvm {
 
@@ -154,7 +154,7 @@ template <typename T, unsigned N>
 class SmallSetVector : public SetVector<T, SmallVector<T, N>, SmallSet<T, N> > {
 public:
   SmallSetVector() {}
-  
+
   /// @brief Initialize a SmallSetVector with a range of elements
   template<typename It>
   SmallSetVector(It Start, It End) {