Browse Source

Type trait fixed.

main
offa 7 years ago
parent
commit
875ce20fc7
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      include/detail/scope_guard_base.h

+ 1
- 1
include/detail/scope_guard_base.h View File

@@ -27,7 +27,7 @@ namespace sr::detail
{
// From P0550
template<class T>
using remove_cvref = std::remove_cv_t<std::remove_reference_t<T>>;
using remove_cvref = std::remove_cv<std::remove_reference<T>>;

template<class T>
using remove_cvref_t = typename remove_cvref<T>::type;

Loading…
Cancel
Save