We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 512b2b4 commit 4165251Copy full SHA for 4165251
include/graphqlservice/GraphQLResponse.h
@@ -43,9 +43,9 @@ struct ValueTypeTraits
43
// Set by r-value reference, get by const reference, and release by value. The only types
44
// that actually support all 3 methods are StringType and ScalarType, everything else
45
// 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;
+ using set_type = ValueType &&;
+ using get_type = const ValueType &;
+ using release_type = ValueType;
49
};
50
51
template <>
0 commit comments