From: Daniel Arndt Date: Mon, 11 Jun 2018 10:37:21 +0000 (+0200) Subject: Deprecate FunctionMap X-Git-Tag: v9.1.0-rc1~1040^2~4 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=34ec2ec56572783ea46032f71b43b4f8952dbb73;p=dealii.git Deprecate FunctionMap --- diff --git a/include/deal.II/dofs/function_map.h b/include/deal.II/dofs/function_map.h index 5426d5767f..3d48930f8e 100644 --- a/include/deal.II/dofs/function_map.h +++ b/include/deal.II/dofs/function_map.h @@ -15,6 +15,7 @@ #ifndef dealii_function_map_h #define dealii_function_map_h +#warning This file is deprecated. #include @@ -73,13 +74,16 @@ class Function; * @author Wolfgang Bangerth, Ralf Hartmann, 2001 */ template -struct FunctionMap +struct DEAL_II_DEPRECATED FunctionMap { /** * Declare the type as discussed above. Since we can't name it FunctionMap * (as that would ambiguate a possible constructor of this class), name it * in the fashion of the standard container local typedefs. + * + * @deprecated Use the alias type directly. */ + DEAL_II_DEPRECATED typedef std::map *> type; };