From b2286c6c8f9076de4143061a778fc676cc15eb84 Mon Sep 17 00:00:00 2001 From: "Thiago Marcos P. Santos" Date: Mon, 5 Mar 2018 22:08:59 +0200 Subject: Bump Mapbox GL Native mapbox-gl-native @ ae0e583590ce8d7a564c8d9cb7c0fcee5515125e Follow-up, added missing headers. --- deps/tao_tuple/28626e99/include/tao/seq/config.hpp | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 deps/tao_tuple/28626e99/include/tao/seq/config.hpp (limited to 'deps/tao_tuple/28626e99/include/tao/seq/config.hpp') diff --git a/deps/tao_tuple/28626e99/include/tao/seq/config.hpp b/deps/tao_tuple/28626e99/include/tao/seq/config.hpp new file mode 100644 index 0000000000..29958766c3 --- /dev/null +++ b/deps/tao_tuple/28626e99/include/tao/seq/config.hpp @@ -0,0 +1,25 @@ +// The Art of C++ / Sequences +// Copyright (c) 2015 Daniel Frey + +#ifndef TAOCPP_SEQUENCES_INCLUDE_CONFIG_HPP +#define TAOCPP_SEQUENCES_INCLUDE_CONFIG_HPP + +#if __cplusplus >= 201402L +# define TAOCPP_USE_STD_INTEGER_SEQUENCE +#endif + +#if (__cplusplus >= 201402L) && defined(_LIBCPP_VERSION) +# define TAOCPP_USE_STD_MAKE_INTEGER_SEQUENCE +#endif + +#if defined(__cpp_fold_expressions) +# define TAOCPP_FOLD_EXPRESSIONS +#elif __cplusplus > 201402L +# if defined(__apple_build_version__) && (__clang_major__ >= 7) +# define TAOCPP_FOLD_EXPRESSIONS +# elif defined(__clang__) && ((__clang_major__ > 3) || ((__clang_major__ == 3) && (__clang_minor__ >= 6))) +# define TAOCPP_FOLD_EXPRESSIONS +# endif +#endif + +#endif // TAOCPP_SEQUENCES_INCLUDE_CONFIG_HPP -- cgit v1.2.1