From d686da1ad1acdf710508633bf30aa07d202155d6 Mon Sep 17 00:00:00 2001 From: Dmitri Naumov <github@naumov.de> Date: Sat, 2 Jun 2018 15:25:08 +0200 Subject: [PATCH] [PL] Remove unused Base = Process ns alias. --- ProcessLib/GroundwaterFlow/GroundwaterFlowProcess.h | 2 -- ProcessLib/HydroMechanics/HydroMechanicsProcess.h | 2 -- ProcessLib/LIE/HydroMechanics/HydroMechanicsProcess.h | 2 -- ProcessLib/LIE/SmallDeformation/SmallDeformationProcess.h | 2 -- ProcessLib/PhaseField/PhaseFieldProcess.h | 2 -- ProcessLib/RichardsFlow/RichardsFlowProcess.h | 2 -- ProcessLib/SmallDeformation/SmallDeformationProcess.h | 2 -- .../ThermoMechanicalPhaseFieldProcess.h | 2 -- ProcessLib/ThermoMechanics/ThermoMechanicsProcess.h | 2 -- 9 files changed, 18 deletions(-) diff --git a/ProcessLib/GroundwaterFlow/GroundwaterFlowProcess.h b/ProcessLib/GroundwaterFlow/GroundwaterFlowProcess.h index 9123e3ee744..c11bb4cdba7 100644 --- a/ProcessLib/GroundwaterFlow/GroundwaterFlowProcess.h +++ b/ProcessLib/GroundwaterFlow/GroundwaterFlowProcess.h @@ -24,8 +24,6 @@ namespace GroundwaterFlow { class GroundwaterFlowProcess final : public Process { - using Base = Process; - public: GroundwaterFlowProcess( MeshLib::Mesh& mesh, diff --git a/ProcessLib/HydroMechanics/HydroMechanicsProcess.h b/ProcessLib/HydroMechanics/HydroMechanicsProcess.h index 92215ea0ae5..2d6c630e76f 100644 --- a/ProcessLib/HydroMechanics/HydroMechanicsProcess.h +++ b/ProcessLib/HydroMechanics/HydroMechanicsProcess.h @@ -26,8 +26,6 @@ struct LocalAssemblerInterface; template <int DisplacementDim> class HydroMechanicsProcess final : public Process { - using Base = Process; - public: HydroMechanicsProcess( MeshLib::Mesh& mesh, diff --git a/ProcessLib/LIE/HydroMechanics/HydroMechanicsProcess.h b/ProcessLib/LIE/HydroMechanics/HydroMechanicsProcess.h index 35ebdcfbd5d..74700779ab1 100644 --- a/ProcessLib/LIE/HydroMechanics/HydroMechanicsProcess.h +++ b/ProcessLib/LIE/HydroMechanics/HydroMechanicsProcess.h @@ -25,8 +25,6 @@ class HydroMechanicsLocalAssemblerInterface; template <int GlobalDim> class HydroMechanicsProcess final : public Process { - using Base = Process; - static_assert(GlobalDim == 2 || GlobalDim == 3, "Currently LIE::HydroMechanicsProcess " "supports only 2D or 3D."); diff --git a/ProcessLib/LIE/SmallDeformation/SmallDeformationProcess.h b/ProcessLib/LIE/SmallDeformation/SmallDeformationProcess.h index 26a4fa6e9a9..11b2b3f9a4d 100644 --- a/ProcessLib/LIE/SmallDeformation/SmallDeformationProcess.h +++ b/ProcessLib/LIE/SmallDeformation/SmallDeformationProcess.h @@ -23,8 +23,6 @@ namespace SmallDeformation template <int DisplacementDim> class SmallDeformationProcess final : public Process { - using Base = Process; - static_assert(DisplacementDim == 2 || DisplacementDim == 3, "Currently LIE::SmallDeformationProcess " "supports only 2D or 3D."); diff --git a/ProcessLib/PhaseField/PhaseFieldProcess.h b/ProcessLib/PhaseField/PhaseFieldProcess.h index e5fc42a0180..d86277f98be 100644 --- a/ProcessLib/PhaseField/PhaseFieldProcess.h +++ b/ProcessLib/PhaseField/PhaseFieldProcess.h @@ -47,8 +47,6 @@ namespace PhaseField template <int DisplacementDim> class PhaseFieldProcess final : public Process { - using Base = Process; - public: PhaseFieldProcess( MeshLib::Mesh& mesh, diff --git a/ProcessLib/RichardsFlow/RichardsFlowProcess.h b/ProcessLib/RichardsFlow/RichardsFlowProcess.h index e61fb0f7581..3c2d130348a 100644 --- a/ProcessLib/RichardsFlow/RichardsFlowProcess.h +++ b/ProcessLib/RichardsFlow/RichardsFlowProcess.h @@ -21,8 +21,6 @@ namespace RichardsFlow { class RichardsFlowProcess final : public Process { - using Base = Process; - public: RichardsFlowProcess( MeshLib::Mesh& mesh, diff --git a/ProcessLib/SmallDeformation/SmallDeformationProcess.h b/ProcessLib/SmallDeformation/SmallDeformationProcess.h index 33caff6c503..03ad31318cf 100644 --- a/ProcessLib/SmallDeformation/SmallDeformationProcess.h +++ b/ProcessLib/SmallDeformation/SmallDeformationProcess.h @@ -55,8 +55,6 @@ private: template <int DisplacementDim> class SmallDeformationProcess final : public Process { - using Base = Process; - public: SmallDeformationProcess( MeshLib::Mesh& mesh, diff --git a/ProcessLib/ThermoMechanicalPhaseField/ThermoMechanicalPhaseFieldProcess.h b/ProcessLib/ThermoMechanicalPhaseField/ThermoMechanicalPhaseFieldProcess.h index f5d6e4f5933..7042e42fba5 100644 --- a/ProcessLib/ThermoMechanicalPhaseField/ThermoMechanicalPhaseFieldProcess.h +++ b/ProcessLib/ThermoMechanicalPhaseField/ThermoMechanicalPhaseFieldProcess.h @@ -52,8 +52,6 @@ struct ThermoMechanicalPhaseFieldLocalAssemblerInterface; template <int DisplacementDim> class ThermoMechanicalPhaseFieldProcess final : public Process { - using Base = Process; - public: ThermoMechanicalPhaseFieldProcess( MeshLib::Mesh& mesh, diff --git a/ProcessLib/ThermoMechanics/ThermoMechanicsProcess.h b/ProcessLib/ThermoMechanics/ThermoMechanicsProcess.h index 7e0218ac19f..25b6f37fe04 100644 --- a/ProcessLib/ThermoMechanics/ThermoMechanicsProcess.h +++ b/ProcessLib/ThermoMechanics/ThermoMechanicsProcess.h @@ -23,8 +23,6 @@ struct ThermoMechanicsLocalAssemblerInterface; template <int DisplacementDim> class ThermoMechanicsProcess final : public Process { - using Base = Process; - public: ThermoMechanicsProcess( MeshLib::Mesh& mesh, -- GitLab