From 00c7d047f7e7ab05166c18db95302bcf6164984c Mon Sep 17 00:00:00 2001 From: Dmitri Naumov <dmitri.naumov@ufz.de> Date: Tue, 19 Mar 2019 11:49:31 +0100 Subject: [PATCH] [PaL] Fix doxygen prj-tags docu placement. --- ParameterLib/GroupBasedParameter.cpp | 2 +- ParameterLib/MeshElementParameter.cpp | 2 +- ParameterLib/MeshNodeParameter.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ParameterLib/GroupBasedParameter.cpp b/ParameterLib/GroupBasedParameter.cpp index b6d4a3f7247..a7417f3e05b 100644 --- a/ParameterLib/GroupBasedParameter.cpp +++ b/ParameterLib/GroupBasedParameter.cpp @@ -23,8 +23,8 @@ std::unique_ptr<ParameterBase> createGroupBasedParameter( config.checkConfigParameter("type", "Group"); // get a property vector of group IDs - //! \ogs_file_param{prj__parameters__parameter__Group__group_id_property} std::string const group_id_property_name = + //! \ogs_file_param{prj__parameters__parameter__Group__group_id_property} config.getConfigParameter<std::string>("group_id_property"); DBUG("Using group_id_property %s", group_id_property_name.c_str()); diff --git a/ParameterLib/MeshElementParameter.cpp b/ParameterLib/MeshElementParameter.cpp index 0968906ca77..20f96ca8928 100644 --- a/ParameterLib/MeshElementParameter.cpp +++ b/ParameterLib/MeshElementParameter.cpp @@ -19,8 +19,8 @@ std::unique_ptr<ParameterBase> createMeshElementParameter( { //! \ogs_file_param{prj__parameters__parameter__type} config.checkConfigParameter("type", "MeshElement"); - //! \ogs_file_param{prj__parameters__parameter__MeshElement__field_name} auto const field_name = + //! \ogs_file_param{prj__parameters__parameter__MeshElement__field_name} config.getConfigParameter<std::string>("field_name"); DBUG("Using field_name %s", field_name.c_str()); diff --git a/ParameterLib/MeshNodeParameter.cpp b/ParameterLib/MeshNodeParameter.cpp index 6f360a068c8..cec8ae6726e 100644 --- a/ParameterLib/MeshNodeParameter.cpp +++ b/ParameterLib/MeshNodeParameter.cpp @@ -19,8 +19,8 @@ std::unique_ptr<ParameterBase> createMeshNodeParameter( { //! \ogs_file_param{prj__parameters__parameter__type} config.checkConfigParameter("type", "MeshNode"); - //! \ogs_file_param{prj__parameters__parameter__MeshNode__field_name} auto const field_name = + //! \ogs_file_param{prj__parameters__parameter__MeshNode__field_name} config.getConfigParameter<std::string>("field_name"); DBUG("Using field_name %s", field_name.c_str()); -- GitLab