From 6cfe1624584441032b97f385368cdd8f77d44723 Mon Sep 17 00:00:00 2001
From: Dmitri Naumov <dmitri.naumov@ufz.de>
Date: Fri, 23 Jun 2017 15:15:10 +0200
Subject: [PATCH] [MatL] Ehlers; Remove unnecessary default ctors.

... and assignment operators.
---
 MaterialLib/SolidModels/Ehlers-impl.h | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/MaterialLib/SolidModels/Ehlers-impl.h b/MaterialLib/SolidModels/Ehlers-impl.h
index e80b8917dc8..8ed21d60d47 100644
--- a/MaterialLib/SolidModels/Ehlers-impl.h
+++ b/MaterialLib/SolidModels/Ehlers-impl.h
@@ -130,15 +130,6 @@ struct PhysicalStressWithInvariants final
     {
     }
 
-    PhysicalStressWithInvariants(PhysicalStressWithInvariants const&) = default;
-    PhysicalStressWithInvariants& operator=(
-        PhysicalStressWithInvariants const&) = default;
-#if defined(_MSC_VER) && (_MSC_VER >= 1900)
-    PhysicalStressWithInvariants(PhysicalStressWithInvariants&&) = default;
-    PhysicalStressWithInvariants& operator=(PhysicalStressWithInvariants&&) =
-        default;
-#endif  // _MSC_VER
-
     KelvinVector value;
     KelvinVector D;
     double I_1;
-- 
GitLab