From 8086e4853cad9f8a1074e9b2f07639c3d816d220 Mon Sep 17 00:00:00 2001 From: Luca Heltai Date: Mon, 9 Apr 2018 22:39:09 +0200 Subject: [PATCH] Fixed MK comments. --- doc/news/changes/minor/20180408LucaHeltai | 2 +- examples/step-53/step-53.cc | 8 ++++---- include/deal.II/grid/manifold_lib.h | 1 - 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/doc/news/changes/minor/20180408LucaHeltai b/doc/news/changes/minor/20180408LucaHeltai index 0269997a50..23d9f93170 100644 --- a/doc/news/changes/minor/20180408LucaHeltai +++ b/doc/news/changes/minor/20180408LucaHeltai @@ -1,4 +1,4 @@ -New: The Manifold class now requires the implementation of a Manifold::clone() method to +New: The Manifold class now requires the implementation of a Manifold::clone() method in all derived classes.
(Luca Heltai, 2018/04/08) diff --git a/examples/step-53/step-53.cc b/examples/step-53/step-53.cc index e8d4a9b2ce..47a09ff2a2 100644 --- a/examples/step-53/step-53.cc +++ b/examples/step-53/step-53.cc @@ -47,8 +47,8 @@ #include // The last include file is required because we will be using a feature that is -// not part of the cxx11 standard. The deal.II library, however, can be installed -// with a cxx11 compliant compiler, without assuming that cxx14 or cxx17 features are +// not part of the C++11 standard. The deal.II library, however, can be installed +// with a C++11 compliant compiler, without assuming that C++14 or C++17 features are // available. As some of these features are very useful, we provide their // implementation in an internal namespace, if the compiler does not support them: #include @@ -262,9 +262,9 @@ namespace Step53 // This function is required by the interface of the Manifold base // class, and allows you to clone the AfricaGeometry class. This is - // where we use a feature that is only available in cxx14, namely the + // where we use a feature that is only available in C++14, namely the // make_unique function, that simplifies the creation of - // std::unique_ptr objects. Notice that, while the function returns a + // std::unique_ptr objects. Notice that, while the function returns an // std::unique_ptr >, we internally create a // unique_ptr. C++11 knows how to handle these cases, // and is able to transform a unique pointer to a derived class to a diff --git a/include/deal.II/grid/manifold_lib.h b/include/deal.II/grid/manifold_lib.h index 6756e21761..a81d837c07 100644 --- a/include/deal.II/grid/manifold_lib.h +++ b/include/deal.II/grid/manifold_lib.h @@ -631,7 +631,6 @@ private: - /** * Manifold description for the surface of a Torus in three dimensions. The * Torus is assumed to be in the x-z plane. The reference coordinate system -- 2.39.5