From 6bbcaf461a0ee96a2f1b2f8a8858cc21e46f4a3b Mon Sep 17 00:00:00 2001 From: danshapero Date: Fri, 1 Apr 2016 07:39:22 -0700 Subject: [PATCH] Indentation fix --- include/deal.II/base/subscriptor.h | 2 +- tests/lac/sparse_matrix_move.cc | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/deal.II/base/subscriptor.h b/include/deal.II/base/subscriptor.h index 6f968c7bf7..4ddd83af30 100644 --- a/include/deal.II/base/subscriptor.h +++ b/include/deal.II/base/subscriptor.h @@ -76,7 +76,7 @@ public: * An object inheriting from Subscriptor can only be moved if no other * objects are subscribing to it. */ - Subscriptor(Subscriptor&&); + Subscriptor(Subscriptor &&); #endif /** diff --git a/tests/lac/sparse_matrix_move.cc b/tests/lac/sparse_matrix_move.cc index 0da8932f77..8e674dde9f 100644 --- a/tests/lac/sparse_matrix_move.cc +++ b/tests/lac/sparse_matrix_move.cc @@ -115,11 +115,11 @@ int main() { SparseMatrix B = std::move(A); } - catch (const Subscriptor::ExcInUse&) + catch (const Subscriptor::ExcInUse &) { need_to_catch_exc_in_use = false; } - catch(...) + catch (...) { return 1; } -- 2.39.5