update boost

This commit is contained in:
2023-11-24 12:56:13 -06:00
parent cfc99971af
commit 19d727037a
9260 changed files with 849256 additions and 299957 deletions

View File

@@ -53,6 +53,10 @@ template< typename R >
struct enable_if_byte< signed char, R > { typedef R type; };
template< typename R >
struct enable_if_byte< unsigned char, R > { typedef R type; };
#if defined(__cpp_lib_byte) && __cpp_lib_byte >= 201603
template< typename R >
struct enable_if_byte< std::byte, R > { typedef R type; };
#endif
} // namespace aux