diff --git a/MeshLib/PropertyVector.h b/MeshLib/PropertyVector.h index 12ca85b9f92e5b64d11c5751a9d7544c8069c00f..dd9b9e42af01c9db04ae8aaf4041a64121185aaa 100644 --- a/MeshLib/PropertyVector.h +++ b/MeshLib/PropertyVector.h @@ -66,7 +66,7 @@ public: } //! Returns the value for the given component stored in the given tuple. - PROP_VAL_TYPE& getComponent(std::size_t tuple_index, std::size_t component) + PROP_VAL_TYPE& getComponent(std::size_t tuple_index, int component) { assert(component < _n_components); assert(tuple_index < getNumberOfTuples()); @@ -76,7 +76,7 @@ public: //! Returns the value for the given component stored in the given tuple. PROP_VAL_TYPE const& getComponent(std::size_t tuple_index, - std::size_t component) const + int component) const { assert(component < _n_components); assert(tuple_index < getNumberOfTuples()); @@ -215,7 +215,7 @@ public: } //! Returns the value for the given component stored in the given tuple. - T const& getComponent(std::size_t tuple_index, std::size_t component) const + T const& getComponent(std::size_t tuple_index, int component) const { assert(component < _n_components); assert(tuple_index < getNumberOfTuples()); diff --git a/ProcessLib/GlobalVectorFromNamedFunction.cpp b/ProcessLib/GlobalVectorFromNamedFunction.cpp index 9a456d918e547dffdf0632d2bca74337d6c3ef16..661228f27124a651fb70625843280d3fbbc293df 100644 --- a/ProcessLib/GlobalVectorFromNamedFunction.cpp +++ b/ProcessLib/GlobalVectorFromNamedFunction.cpp @@ -41,7 +41,7 @@ GlobalVector const& GlobalVectorFromNamedFunction::call( GlobalIndexType nnodes = _mesh.getNumberOfNodes(); auto const n_args = _function_caller.getNumberOfUnboundArguments(); - assert(dof_table.getNumberOfComponents() == n_args); + assert(dof_table.getNumberOfComponents() == static_cast<int>(n_args)); std::vector<double> args(n_args); for (GlobalIndexType node_id = 0; node_id < nnodes; ++node_id) { diff --git a/ProcessLib/LIE/HydroMechanics/CreateHydroMechanicsProcess.cpp b/ProcessLib/LIE/HydroMechanics/CreateHydroMechanicsProcess.cpp index bbbda13436c50cec51e9be4aaec2481665ccb559..2379a87c6564842bf13c4869f0849c9c809d7e71 100644 --- a/ProcessLib/LIE/HydroMechanics/CreateHydroMechanicsProcess.cpp +++ b/ProcessLib/LIE/HydroMechanics/CreateHydroMechanicsProcess.cpp @@ -225,8 +225,8 @@ std::unique_ptr<Process> createHydroMechanicsProcess( // Fracture properties std::unique_ptr<FractureProperty> frac_prop = nullptr; - //! \ogs_file_param{prj__processes__process__HYDRO_MECHANICS_WITH_LIE__fracture_properties} auto opt_fracture_properties_config = + //! \ogs_file_param{prj__processes__process__HYDRO_MECHANICS_WITH_LIE__fracture_properties} config.getConfigSubtreeOptional("fracture_properties"); if (opt_fracture_properties_config) { @@ -265,8 +265,8 @@ std::unique_ptr<Process> createHydroMechanicsProcess( initial_fracture_effective_stress.name.c_str()); // deactivation of matrix elements in flow - //! \ogs_file_param{prj__processes__process__HYDRO_MECHANICS_WITH_LIE__deactivate_matrix_in_flow} auto opt_deactivate_matrix_in_flow = + //! \ogs_file_param{prj__processes__process__HYDRO_MECHANICS_WITH_LIE__deactivate_matrix_in_flow} config.getConfigParameterOptional<bool>("deactivate_matrix_in_flow"); bool const deactivate_matrix_in_flow = opt_deactivate_matrix_in_flow && *opt_deactivate_matrix_in_flow; diff --git a/ProcessLib/LIE/SmallDeformation/CreateSmallDeformationProcess.cpp b/ProcessLib/LIE/SmallDeformation/CreateSmallDeformationProcess.cpp index 987f25c1606ee7bbf12dde49b661a4a6d127f87f..94dbf3d18c498e4c3e1bc6bc839b6f76494492ec 100644 --- a/ProcessLib/LIE/SmallDeformation/CreateSmallDeformationProcess.cpp +++ b/ProcessLib/LIE/SmallDeformation/CreateSmallDeformationProcess.cpp @@ -151,9 +151,10 @@ std::unique_ptr<Process> createSmallDeformationProcess( // Fracture properties std::vector<std::unique_ptr<FractureProperty>> vec_fracture_property; - //! \ogs_file_param{prj__processes__process__SMALL_DEFORMATION_WITH_LIE__fracture_properties} - for (auto fracture_properties_config : - config.getConfigSubtreeList("fracture_properties")) + for ( + auto fracture_properties_config : + //! \ogs_file_param{prj__processes__process__SMALL_DEFORMATION_WITH_LIE__fracture_properties} + config.getConfigSubtreeList("fracture_properties")) { auto& para_b0 = ProcessLib::findParameter<double>( //! \ogs_file_param_special{prj__processes__process__SMALL_DEFORMATION_WITH_LIE__fracture_properties__initial_aperture} diff --git a/Tests/NumLib/TestShapeFunctions.cpp b/Tests/NumLib/TestShapeFunctions.cpp index 37aedcb3926052ac38c89ac11bc7dc43fefc4d4a..661f54673482c77609b430af0603773a1fe7c838 100644 --- a/Tests/NumLib/TestShapeFunctions.cpp +++ b/Tests/NumLib/TestShapeFunctions.cpp @@ -105,8 +105,9 @@ TYPED_TEST_CASE(ShapeFunctionTest, ShapeFunctionTestTypes); // Access private members via this pointer or TestFixture:: for types TYPED_TEST(ShapeFunctionTest, PartitionOfUnity) { - auto isPartitionOfUnity = [this]( - std::array<double, TypeParam::DIM>& natural_coordinates_point) -> bool { + auto isPartitionOfUnity = + [](std::array<double, TypeParam::DIM>& natural_coordinates_point) + -> bool { // compute shape functions std::array<double, TypeParam::NPOINTS> N; @@ -125,8 +126,9 @@ TYPED_TEST(ShapeFunctionTest, PartitionOfUnity) TYPED_TEST(ShapeFunctionTest, SumOfGradientsIsZero) { - auto isSumOfGradientsZero = [this]( - std::array<double, TypeParam::DIM>& natural_coordinates_point) -> bool { + auto isSumOfGradientsZero = + [](std::array<double, TypeParam::DIM>& natural_coordinates_point) + -> bool { // compute shape functions std::array<double, TypeParam::DIM * TypeParam::NPOINTS> dNdr;