From 011750d33df83e1f96055b0c460c759711285fe5 Mon Sep 17 00:00:00 2001 From: Reza Rastak Date: Tue, 28 May 2019 13:43:43 -0700 Subject: [PATCH] Apply suggestions from code review Small fixes from PR review Co-Authored-By: Daniel Arndt --- doc/news/changes/minor/20190524RezaRastak | 3 ++- include/deal.II/base/table.h | 4 ++-- tests/lac/matrices_pack_unpack.cc | 4 ++-- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/doc/news/changes/minor/20190524RezaRastak b/doc/news/changes/minor/20190524RezaRastak index e3ab0d5e97..611d689a2c 100644 --- a/doc/news/changes/minor/20190524RezaRastak +++ b/doc/news/changes/minor/20190524RezaRastak @@ -1,3 +1,4 @@ -Fix: FullMatrix can now be packed into std::vector and unpacked from it using std::copy and the begin() and end() iterators +Fixed: FullMatrix can now be packed into std::vector and unpacked from it using +std::copy and the begin() and end() iterators.
(Reza Rastak, 2019/05/24) diff --git a/include/deal.II/base/table.h b/include/deal.II/base/table.h index 6c5fcfea33..b2c794b91d 100644 --- a/include/deal.II/base/table.h +++ b/include/deal.II/base/table.h @@ -919,7 +919,7 @@ namespace MatrixTableIterators value() const; /** - * Conversion operator that returns a constant reference to the element + * Conversion operator that returns a constant reference to the element. */ operator const value_type &() const; @@ -1049,7 +1049,7 @@ namespace MatrixTableIterators value() const; /** - * Conversion operator that returns a reference to the element + * Conversion operator that returns a reference to the element. */ operator value_type &(); }; diff --git a/tests/lac/matrices_pack_unpack.cc b/tests/lac/matrices_pack_unpack.cc index a0a7e81af6..bb2f4e9819 100644 --- a/tests/lac/matrices_pack_unpack.cc +++ b/tests/lac/matrices_pack_unpack.cc @@ -1,6 +1,6 @@ // --------------------------------------------------------------------- // -// Copyright (C) 2005 - 2018 by the deal.II authors +// Copyright (C) 2019 by the deal.II authors // // This file is part of the deal.II library. // @@ -41,4 +41,4 @@ main() A.print(deallog); return 0; -} \ No newline at end of file +} -- 2.39.5