aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/ADT/GraphTraits.h
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2009-01-09 19:25:42 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2009-01-09 19:25:42 +0000
commit3a54b3dc87a581c203b18050b4f787b4ca28a12c (patch)
treec7cd9d64b35ff34786c12499439ef5e525642d50 /include/llvm/ADT/GraphTraits.h
parent6e7a1617ac4a34792d9097b8d3644b72f57a45f7 (diff)
downloadexternal_llvm-3a54b3dc87a581c203b18050b4f787b4ca28a12c.zip
external_llvm-3a54b3dc87a581c203b18050b4f787b4ca28a12c.tar.gz
external_llvm-3a54b3dc87a581c203b18050b4f787b4ca28a12c.tar.bz2
Removed trailing whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62000 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ADT/GraphTraits.h')
-rw-r--r--include/llvm/ADT/GraphTraits.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/ADT/GraphTraits.h b/include/llvm/ADT/GraphTraits.h
index 566956d..35da5ab 100644
--- a/include/llvm/ADT/GraphTraits.h
+++ b/include/llvm/ADT/GraphTraits.h
@@ -84,15 +84,15 @@ template<class T>
struct GraphTraits<Inverse<Inverse<T> > > {
typedef typename GraphTraits<T>::NodeType NodeType;
typedef typename GraphTraits<T>::ChildIteratorType ChildIteratorType;
-
+
static NodeType *getEntryNode(Inverse<Inverse<T> > *G) {
return GraphTraits<T>::getEntryNode(G->Graph.Graph);
}
-
+
static ChildIteratorType child_begin(NodeType* N) {
return GraphTraits<T>::child_begin(N);
}
-
+
static ChildIteratorType child_end(NodeType* N) {
return GraphTraits<T>::child_end(N);
}