Merge pull request #456 from andlaus/fix_masochistic_warnings

fix some masochistic compiler warnings for the GCC 9 pre-release
This commit is contained in:
Tor Harald Sandve 2019-01-10 13:59:34 +01:00 committed by GitHub
commit 225f67ae24
2 changed files with 5 additions and 0 deletions

View File

@ -38,7 +38,9 @@
#include <ewoms/common/start.hh>
// fake forward declaration to prevent esoteric compiler warning
int mainCU1(int argc, char **argv);
int mainCU1(int argc, char **argv)
{
typedef TTAG(LensProblemEcfvAd) ProblemTypeTag;

View File

@ -38,6 +38,9 @@
#include <ewoms/common/start.hh>
// fake forward declaration to prevent esoteric compiler warning
int mainCU2(int argc, char **argv);
int mainCU2(int argc, char **argv)
{
typedef TTAG(LensProblemEcfvAd) ProblemTypeTag;