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. --- .../28626e99/include/tao/seq/inclusive_scan.hpp | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 deps/tao_tuple/28626e99/include/tao/seq/inclusive_scan.hpp (limited to 'deps/tao_tuple/28626e99/include/tao/seq/inclusive_scan.hpp') diff --git a/deps/tao_tuple/28626e99/include/tao/seq/inclusive_scan.hpp b/deps/tao_tuple/28626e99/include/tao/seq/inclusive_scan.hpp new file mode 100644 index 0000000000..dc4bf72886 --- /dev/null +++ b/deps/tao_tuple/28626e99/include/tao/seq/inclusive_scan.hpp @@ -0,0 +1,32 @@ +// The Art of C++ / Sequences +// Copyright (c) 2015 Daniel Frey + +#ifndef TAOCPP_SEQUENCES_INCLUDE_INCLUSIVE_SCAN_HPP +#define TAOCPP_SEQUENCES_INCLUDE_INCLUSIVE_SCAN_HPP + +#include + +#include "plus.hpp" +#include "exclusive_scan.hpp" +#include "integer_sequence.hpp" + +namespace tao +{ + namespace seq + { + template< typename T, T... Ns > + struct inclusive_scan + : plus< exclusive_scan_t< T, Ns... >, integer_sequence< T, Ns... > > + {}; + + template< typename T, T... Ns > + struct inclusive_scan< integer_sequence< T, Ns... > > + : plus< exclusive_scan_t< integer_sequence< T, Ns... > >, integer_sequence< T, Ns... > > + {}; + + template< typename T, T... Ns > + using inclusive_scan_t = typename inclusive_scan< T, Ns... >::type; + } +} + +#endif // TAOCPP_SEQUENCES_INCLUDE_INCLUSIVE_SCAN_HPP -- cgit v1.2.1