Fixed lint errors:
[oota-llvm.git] / include / llvm / ADT / STLExtras.h
index ca711b79822c739f2feb0e2e271571dd53ef4014..964e7e07ef7d57a67ef37ef61cb4599c44bc5063 100644 (file)
@@ -17,9 +17,9 @@
 #ifndef LLVM_ADT_STLEXTRAS_H
 #define LLVM_ADT_STLEXTRAS_H
 
+#include <cstddef> // for std::size_t
 #include <functional>
 #include <utility> // for std::pair
-#include <cstddef> // for std::size_t
 #include "llvm/ADT/iterator.h"
 
 namespace llvm {
@@ -231,11 +231,11 @@ static inline int array_pod_sort_comparator(const void *P1, const void *P2) {
     return 1;
   return 0;
 }
-  
+
 /// get_array_pad_sort_comparator - This is an internal helper function used to
 /// get type deduction of T right.
 template<typename T>
-static int (*get_array_pad_sort_comparator(const T &X)) 
+static int (*get_array_pad_sort_comparator(const T &X))
              (const void*, const void*) {
   return array_pod_sort_comparator<T>;
 }
@@ -262,7 +262,7 @@ static inline void array_pod_sort(IteratorTy Start, IteratorTy End) {
   qsort(&*Start, End-Start, sizeof(*Start),
         get_array_pad_sort_comparator(*Start));
 }
-  
+
 } // End llvm namespace
 
 #endif