From a4f110d4590cb1f6977b9221bcab2901fae1af99 Mon Sep 17 00:00:00 2001 From: Adrian Prantl Date: Fri, 29 Sep 2017 22:46:22 +0000 Subject: [PATCH] fix 80 column violation. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@314564 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/ADT/iterator.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/llvm/ADT/iterator.h b/include/llvm/ADT/iterator.h index 15720a67c04..711f8f22162 100644 --- a/include/llvm/ADT/iterator.h +++ b/include/llvm/ADT/iterator.h @@ -70,10 +70,10 @@ class iterator_facade_base ReferenceT> { protected: enum { - IsRandomAccess = - std::is_base_of::value, - IsBidirectional = - std::is_base_of::value, + IsRandomAccess = std::is_base_of::value, + IsBidirectional = std::is_base_of::value, }; /// A proxy object for computing a reference via indirecting a copy of an -- 2.11.0