From 87e43268835017ac6029f5108722530296359009 Mon Sep 17 00:00:00 2001 From: Alexander Grund Date: Sat, 18 Apr 2020 13:58:45 +0200 Subject: [PATCH] Require C++11 --- .travis.yml | 4 ---- README.md | 2 ++ 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6b5ca40..b151bcb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,7 +9,6 @@ # and how it can be used with Boost libraries. # -sudo: false language: cpp branches: @@ -21,11 +20,8 @@ env: - CXX_STANDARD=c++14 BRANCH_TO_TEST=master - CXX_STANDARD=c++11 BRANCH_TO_TEST=master - CXX_STANDARD=c++11 BRANCH_TO_TEST=boost-1.58.0 - - CXX_STANDARD=c++98 BRANCH_TO_TEST=boost-1.58.0 - CXX_STANDARD=c++11 BRANCH_TO_TEST=boost-1.59.0 - - CXX_STANDARD=c++98 BRANCH_TO_TEST=boost-1.59.0 - CXX_STANDARD=c++11 BRANCH_TO_TEST=boost-1.67.0 - - CXX_STANDARD=c++98 BRANCH_TO_TEST=boost-1.67.0 compiler: - clang diff --git a/README.md b/README.md index a926488..8be3b04 100644 --- a/README.md +++ b/README.md @@ -7,3 +7,5 @@ Distributed under the [Boost Software License, Version 1.0](http://boost.org/LIC [![Build Status](https://travis-ci.org/mat007/turtle.svg)](https://travis-ci.org/mat007/turtle) [![Build status](https://ci.appveyor.com/api/projects/status/459hvqkb5rts4hw7?svg=true)](https://ci.appveyor.com/project/mat007/turtle) [![Coverage Status](https://coveralls.io/repos/mat007/turtle/badge.png)](https://coveralls.io/r/mat007/turtle) + +Boost and a C++11 compatible compiler is required.