From 3cc20c5baebbc57be3f6facf60a9c0e752d55971 Mon Sep 17 00:00:00 2001
From: Bernd Flemisch <bernd@iws.uni-stuttgart.de>
Date: Fri, 13 Sep 2019 13:30:29 +0200
Subject: [PATCH] [discretization] deprecate FVGridGeometry

---
 dumux/common/properties.hh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dumux/common/properties.hh b/dumux/common/properties.hh
index fc72e9cc04..a61b16a2c0 100644
--- a/dumux/common/properties.hh
+++ b/dumux/common/properties.hh
@@ -113,7 +113,7 @@ struct ElementBoundaryTypes { using type = UndefinedProperty; };
 
 // TODO: Remove deprecated property FVGridGeometry after 3.1
 template<class TypeTag, class MyTypeTag>
-struct FVGridGeometry { using type = UndefinedProperty; };                      //!< The type of the global finite volume geometry
+struct [[deprecated("Use GridGeometry instead.")]] FVGridGeometry { using type = UndefinedProperty; }; //!< The type of the global finite volume geometry
 
 // Dumux 3.1 changes the property `FVGridGeometry` to `GridGeometry`.
 // For ensuring backward compatibility, it is necessary to set the default value
-- 
GitLab