summaryrefslogtreecommitdiff
path: root/include/llvm/ADT/GraphTraits.h
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2009-02-20 22:20:18 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2009-02-20 22:20:18 +0000
commita2769a33c94f021a609a462b28ebea069eba6f74 (patch)
treeb8bcb623c4e5d2c65ede773869d5a14e168b1324 /include/llvm/ADT/GraphTraits.h
parent1bcf0f5e45fd4e17b1be5fc80984b3c1722ba381 (diff)
downloadllvm-a2769a33c94f021a609a462b28ebea069eba6f74.tar.gz
llvm-a2769a33c94f021a609a462b28ebea069eba6f74.tar.bz2
llvm-a2769a33c94f021a609a462b28ebea069eba6f74.tar.xz
Fixed lint errors:
* Alphabetized #includes * Removed trailing whitespace * Wrapped or shortened lines over 80 chars git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65181 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ADT/GraphTraits.h')
-rw-r--r--include/llvm/ADT/GraphTraits.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/ADT/GraphTraits.h b/include/llvm/ADT/GraphTraits.h
index 35da5ab2f8..2d103cf83e 100644
--- a/include/llvm/ADT/GraphTraits.h
+++ b/include/llvm/ADT/GraphTraits.h
@@ -78,8 +78,8 @@ struct Inverse {
inline Inverse(const GraphType &G) : Graph(G) {}
};
-// Provide a partial specialization of GraphTraits so that the inverse of an inverse
-// falls back to the original graph.
+// Provide a partial specialization of GraphTraits so that the inverse of an
+// inverse falls back to the original graph.
template<class T>
struct GraphTraits<Inverse<Inverse<T> > > {
typedef typename GraphTraits<T>::NodeType NodeType;