Add more -std variants to .travis.yml; disable constexpr tuple_for_each test on libc++11

This commit is contained in:
Peter Dimov
2016-11-15 21:34:15 +02:00
parent 01f376b83d
commit 4b426c4fce
2 changed files with 18 additions and 1 deletions

View File

@@ -9,7 +9,9 @@
#include <boost/tuple_for_each.hpp>
#include <boost/config.hpp>
#if defined( BOOST_NO_CXX11_CONSTEXPR )
// Technically std::tuple isn't constexpr enabled in C++11, but it works with libstdc++
#if defined( BOOST_NO_CXX11_CONSTEXPR ) || ( defined( _LIBCPP_VERSION ) && __cplusplus < 201400L )
int main() {}