Skip to content

Commit 23ffa04

Browse files
committed
For real this time
(Template wasn't being instantiated in my build environment, d'oh)
1 parent 4c56a70 commit 23ffa04

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

inkcpp/include/traits.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ struct remove_reference<T&&>
120120
template<class T>
121121
struct remove_cvref
122122
{
123-
using typename remove_cv<remove_reference<T>>::type;
123+
typedef typename remove_cv<typename remove_reference<T>::type>::type type;
124124
};
125125

126126
// == string testing (from me) ==

0 commit comments

Comments
 (0)