updated boost on windows

This commit is contained in:
Bassem Girgis
2019-08-13 21:48:48 -05:00
parent 7d77d485fd
commit b40a3bee82
5162 changed files with 473027 additions and 116452 deletions

View File

@@ -8,7 +8,7 @@
#define BOOST_FUSION_STD_ARRAY_ARRAY_SIZE_01062013_1700
#include <cstddef>
#include <type_traits>
#include <boost/type_traits/integral_constant.hpp>
namespace boost { namespace fusion
{
@@ -18,7 +18,7 @@ namespace boost { namespace fusion
struct std_array_size;
template<template<typename, std::size_t> class Array, typename T, std::size_t N>
struct std_array_size<Array<T, N>> : std::integral_constant<std::size_t, N> {};
struct std_array_size<Array<T, N> > : boost::integral_constant<std::size_t, N> {};
}
}}