Skip to content

Commit 4165251

Browse files
committed
Fix gcc error from extra typename tokens
1 parent 512b2b4 commit 4165251

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

include/graphqlservice/GraphQLResponse.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ struct ValueTypeTraits
4343
// Set by r-value reference, get by const reference, and release by value. The only types
4444
// that actually support all 3 methods are StringType and ScalarType, everything else
4545
// overrides some subset of these types with a template specialization.
46-
using set_type = typename ValueType &&;
47-
using get_type = const typename ValueType &;
48-
using release_type = typename ValueType;
46+
using set_type = ValueType &&;
47+
using get_type = const ValueType &;
48+
using release_type = ValueType;
4949
};
5050

5151
template <>

0 commit comments

Comments
 (0)