Merge branch 'fix_guideline' into 'master'

guideline checks allowed to fail, fix guideline issue

See merge request jschoeberl/netgen!121
This commit is contained in:
Joachim Schöberl 2019-01-25 08:17:29 +00:00
commit af6a872076
2 changed files with 2 additions and 1 deletions

View File

@ -100,6 +100,7 @@ test_guidelines:
script:
- docker run -e CCACHE_DIR=/ccache -v /mnt/ccache:/ccache netgen_${CI_BUILD_REF_NAME}:${UBUNTU_VERSION} bash /root/src/netgen/tests/build_guidelines.sh
when: always
allow_failure: true
# check if it compiles without spdlog
test_noSpdlog:

View File

@ -154,7 +154,7 @@ namespace ngcore
{ return version_map[library]; }
// only used for PyArchive
virtual void NeedsVersion(const std::string& library, const std::string& version) {}
virtual void NeedsVersion(const std::string& /*unused*/, const std::string& /*unused*/) {}
// Pure virtual functions that have to be implemented by In-/OutArchive
virtual Archive & operator & (double & d) = 0;