From 7947d3bc96813b76c86b2b37b02a0f16e7eb063e Mon Sep 17 00:00:00 2001
From: Tobias Leibner <tobias.leibner@googlemail.com>
Date: Fri, 7 Oct 2016 12:38:39 +0200
Subject: [PATCH] [container.common] fix clang format

---
 dune/xt/la/container/common.hh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dune/xt/la/container/common.hh b/dune/xt/la/container/common.hh
index 98e6e5c19..0d47de091 100644
--- a/dune/xt/la/container/common.hh
+++ b/dune/xt/la/container/common.hh
@@ -903,7 +903,7 @@ private:
   size_t get_entry_index(const size_t rr, const size_t cc, const bool throw_if_not_in_pattern = true) const
   {
     const auto& row_offset = row_pointers_->operator[](rr);
-    const auto& next_row_offset = row_pointers_->operator[](rr+1);
+    const auto& next_row_offset = row_pointers_->operator[](rr + 1);
     const auto column_indices_it = column_indices_->begin() + row_offset;
     const auto column_indices_it_end = column_indices_->begin() + next_row_offset;
     const auto entry_it = std::find(column_indices_it, column_indices_it_end, cc);
-- 
GitLab