diff options
author | Philip Pfaffe <philip.pfaffe@gmail.com> | 2018-06-29 08:29:17 +0000 |
---|---|---|
committer | Philip Pfaffe <philip.pfaffe@gmail.com> | 2018-06-29 08:29:17 +0000 |
commit | 2f3eff86b1710174b009420d12bf7774847312d5 (patch) | |
tree | 3a4ec25299f741a96f489b35fae472140745fb82 | |
parent | 52025af1daa5ea6da680220c1c4a8eaf7ca8efe0 (diff) | |
download | bcm5719-llvm-2f3eff86b1710174b009420d12bf7774847312d5.tar.gz bcm5719-llvm-2f3eff86b1710174b009420d12bf7774847312d5.zip |
[NFC] Fix formatting to appease builders
llvm-svn: 335952
-rw-r--r-- | polly/include/polly/Support/ISLTools.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/polly/include/polly/Support/ISLTools.h b/polly/include/polly/Support/ISLTools.h index 245c3fcf79d..c0095dfc248 100644 --- a/polly/include/polly/Support/ISLTools.h +++ b/polly/include/polly/Support/ISLTools.h @@ -28,7 +28,8 @@ struct iterator_base : public llvm::iterator_facade_base< explicit iterator_base(const ListT &List) : List(&List) { Position = static_cast<DerivedT *>(this)->list_size(); } - iterator_base(const ListT &List, int Position) : List(&List), Position(Position) {} + iterator_base(const ListT &List, int Position) + : List(&List), Position(Position) {} iterator_base &operator=(const iterator_base &R) = default; bool operator==(const iterator_base &O) const { |