add missing include and do not tests on clang-3.7

This commit is contained in:
Antony Polukhin
2021-04-24 13:49:52 +03:00
parent 4468903f8f
commit d6d07a8ce8
2 changed files with 5 additions and 2 deletions

View File

@ -32,12 +32,13 @@ jobs:
os: ubuntu-18.04
cxxflags: "cxxflags=--coverage -fsanitize=address,leak,undefined -fno-sanitize-recover=undefined"
linkflags: "linkflags=--coverage -lasan -lubsan"
launcher: "testing.launcher=LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libasan.so.5"
gcov_tool: "gcov-10"
- toolset: clang
compiler: clang++-3.7
compiler: clang++-3.8
cxxstd: "03,11,14"
os: ubuntu-16.04
install: clang-3.7
install: clang-3.8
- toolset: clang
compiler: clang++-9
cxxstd: "03,11,14,17,2a"

View File

@ -6,6 +6,8 @@
#include <boost/config.hpp>
#include <cstddef>
template <class T>
void do_something(const T&) {}