Fix missing \n at end of file,

Fix some clang warnings.
Add gcc 7&8 to CI tests.
This commit is contained in:
jzmaddock
2018-07-22 18:25:35 +01:00
parent 7b2ccc0095
commit 5177518fe3
3 changed files with 56 additions and 1 deletions

View File

@ -124,8 +124,10 @@ template class BOOST_REGEX_TEMPLATE_DECL ::boost::BOOST_REGEX_DETAIL_NS::perl_ma
#ifdef __clang__
#pragma clang diagnostic push
#if (__clang_major__ > 3) || ((__clang_major__ == 3) && (__clang_minor__ > 5))
#pragma clang diagnostic ignored "-Wkeyword-macro"
#endif
#endif
# ifndef BOOST_REGEX_INSTANTIATE
# ifdef __GNUC__