From e1460e9586fa1bf13c3afffe9f5e801fdd915bf1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dennis=20Gl=C3=A4ser?= Date: Wed, 3 Jun 2020 11:58:23 +0000 Subject: [PATCH] Merge branch 'headercheck/example_biomin' into 'master' [example][biomin] add missing include See merge request dumux-repositories/dumux!2156 (cherry picked from commit fe47be42ad525dbfb4cdf1e2b13512e958364599) cd9aa5cb [example][biomin] add includes for headercheck --- examples/biomineralization/doc/fluidmaterial.md | 2 ++ examples/biomineralization/doc/solidmaterial.md | 2 ++ examples/biomineralization/material/components/biofilm.hh | 2 ++ .../biomineralization/material/components/suspendedbiomass.hh | 2 ++ 4 files changed, 8 insertions(+) diff --git a/examples/biomineralization/doc/fluidmaterial.md b/examples/biomineralization/doc/fluidmaterial.md index f02af395a6..c5db3afa86 100644 --- a/examples/biomineralization/doc/fluidmaterial.md +++ b/examples/biomineralization/doc/fluidmaterial.md @@ -86,6 +86,8 @@ This file contains the __ component class__ which defines the name and molar mas ```cpp // including the base component #include + +#include ``` ### The suspended biomass component diff --git a/examples/biomineralization/doc/solidmaterial.md b/examples/biomineralization/doc/solidmaterial.md index 95e72dc28d..c39a8a4c22 100644 --- a/examples/biomineralization/doc/solidmaterial.md +++ b/examples/biomineralization/doc/solidmaterial.md @@ -59,6 +59,8 @@ This file contains the __solid component class__ which defines the name, molar m // including the base and the generic solid component #include #include + +#include ``` ### The biofilm component diff --git a/examples/biomineralization/material/components/biofilm.hh b/examples/biomineralization/material/components/biofilm.hh index b906b030dc..7fe1505926 100644 --- a/examples/biomineralization/material/components/biofilm.hh +++ b/examples/biomineralization/material/components/biofilm.hh @@ -31,6 +31,8 @@ // including the base and the generic solid component #include #include + +#include // [[/codeblock]] // ### The biofilm component diff --git a/examples/biomineralization/material/components/suspendedbiomass.hh b/examples/biomineralization/material/components/suspendedbiomass.hh index 359f79eebd..ce5e2a5f22 100644 --- a/examples/biomineralization/material/components/suspendedbiomass.hh +++ b/examples/biomineralization/material/components/suspendedbiomass.hh @@ -30,6 +30,8 @@ // [[codeblock]] // including the base component #include + +#include // [[/codeblock]] // ### The suspended biomass component -- GitLab