diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2023-02-11 12:38:04 +0000 | 
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2023-02-11 12:38:11 +0000 | 
| commit | e3b557809604d036af6e00c60f012c2025b59a5e (patch) | |
| tree | 8a11ba2269a3b669601e2fd41145b174008f4da8 /libcxx/include/__random/is_seed_sequence.h | |
| parent | 08e8dd7b9db7bb4a9de26d44c1cbfd24e869c014 (diff) | |
Diffstat (limited to 'libcxx/include/__random/is_seed_sequence.h')
| -rw-r--r-- | libcxx/include/__random/is_seed_sequence.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/libcxx/include/__random/is_seed_sequence.h b/libcxx/include/__random/is_seed_sequence.h index a6832f51c1ee..3c82b2790b03 100644 --- a/libcxx/include/__random/is_seed_sequence.h +++ b/libcxx/include/__random/is_seed_sequence.h @@ -23,7 +23,7 @@ struct __is_seed_sequence  {      static _LIBCPP_CONSTEXPR const bool value =                !is_convertible<_Sseq, typename _Engine::result_type>::value && -              !is_same<typename remove_cv<_Sseq>::type, _Engine>::value; +              !is_same<__remove_cv_t<_Sseq>, _Engine>::value;  };  _LIBCPP_END_NAMESPACE_STD | 
