From 3adbe7919c8c80ace0af20ba89370e803c86898a Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Wed, 28 Apr 2021 10:25:01 -0600 Subject: [PATCH] Do not actually define the general Table class. The class is exclusively used through its specializations. There is no need to provide a general implementation. It is also currently unusable since the class has no non-trivial constructors, so nobody could have used the general template for anything useful. --- include/deal.II/base/table.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/deal.II/base/table.h b/include/deal.II/base/table.h index a5a951b73d..f5f92a610c 100644 --- a/include/deal.II/base/table.h +++ b/include/deal.II/base/table.h @@ -663,8 +663,7 @@ protected: * @ingroup data */ template -class Table : public TableBase -{}; +class Table; /** -- 2.39.5