feat [skip ci]: update single_include

This commit is contained in:
ToruNiina
2025-01-27 15:08:34 +00:00
parent e23094aa9a
commit 3a0a35aa4e

View File

@@ -3869,7 +3869,7 @@ struct bad_result_access final : public ::toml::exception
template<typename T>
struct success
{
static_assert( ! std::is_same<T, void>::value, "");
static_assert( ! std::is_void<T>::value, "");
using value_type = T;
@@ -3903,7 +3903,7 @@ struct success
template<typename T>
struct success<std::reference_wrapper<T>>
{
static_assert( ! std::is_same<T, void>::value, "");
static_assert( ! std::is_void<T>::value, "");
using value_type = T;