You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ Evaluation occurs after removing const, volatile, reference.
31
31
template < typename T >
32
32
using inherit_from_smart_ptr = decltype( inherit_from_smart_ptr_impl( std::declval< std::remove_cv_t< std::remove_reference_t< T > >* >() ) );
33
33
```
34
-
```inherit_from_smart_ptr<T>::value```/```inherit_from_smart_ptr_v<T>``` is ```true``` if ```T``` is based on```std::shared_ptr``` or ```std::unique_ptr```.
34
+
```inherit_from_smart_ptr<T>::value```/```inherit_from_smart_ptr_v<T>``` is ```true``` if ```T``` is derived from```std::shared_ptr``` or ```std::unique_ptr```.
35
35
36
36
Evaluation occurs after removing const, volatile, reference.
37
37
@@ -40,7 +40,7 @@ Evaluation occurs after removing const, volatile, reference.
40
40
template < typename T >
41
41
using inherit_from_shared_ptr = decltype( inherit_from_shared_ptr_impl( std::declval< std::remove_cv_t< std::remove_reference_t< T > >* >() ) );
42
42
```
43
-
```inherit_from_shared_ptr<T>::value```/```inherit_from_shared_ptr_v<T>``` is ```true``` if ```T``` is based on```std::shared_ptr```.
43
+
```inherit_from_shared_ptr<T>::value```/```inherit_from_shared_ptr_v<T>``` is ```true``` if ```T``` is derived from```std::shared_ptr```.
44
44
45
45
Evaluation occurs after removing const, volatile, reference.
46
46
@@ -49,7 +49,7 @@ Evaluation occurs after removing const, volatile, reference.
49
49
template < typename T >
50
50
using inherit_from_unique_ptr = decltype( inherit_from_unique_ptr_impl( std::declval< std::remove_cv_t< std::remove_reference_t< T > >* >() ) );
51
51
```
52
-
```inherit_from_unique_ptr<T>::value```/```inherit_from_unique_ptr_v<T>``` is ```true``` if ```T``` is based on```std::unique_ptr```.
52
+
```inherit_from_unique_ptr<T>::value```/```inherit_from_unique_ptr_v<T>``` is ```true``` if ```T``` is derived from```std::unique_ptr```.
53
53
54
54
Evaluation occurs after removing const, volatile, reference.
0 commit comments