From: danshapero Date: Fri, 1 Apr 2016 14:39:22 +0000 (-0700) Subject: Indentation fix X-Git-Tag: v8.5.0-rc1~1133^2~2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6bbcaf461a0ee96a2f1b2f8a8858cc21e46f4a3b;p=dealii.git Indentation fix --- 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; }