From: Adrian Prantl Date: Fri, 29 Sep 2017 22:46:22 +0000 (+0000) Subject: fix 80 column violation. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a4f110d4590cb1f6977b9221bcab2901fae1af99;p=llvm fix 80 column violation. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@314564 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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