File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -48,12 +48,14 @@ struct RequestState : std::enable_shared_from_this<RequestState>
48
48
{
49
49
};
50
50
51
- constexpr std::string_view strData = " data" ;
52
- constexpr std::string_view strErrors = " errors" ;
53
- constexpr std::string_view strMessage = " message" ;
54
- constexpr std::string_view strQuery = " query" ;
55
- constexpr std::string_view strMutation = " mutation" ;
56
- constexpr std::string_view strSubscription = " subscription" ;
51
+ using namespace std ::literals;
52
+
53
+ constexpr std::string_view strData{ " data" sv };
54
+ constexpr std::string_view strErrors{ " errors" sv };
55
+ constexpr std::string_view strMessage{ " message" sv };
56
+ constexpr std::string_view strQuery{ " query" sv };
57
+ constexpr std::string_view strMutation{ " mutation" sv };
58
+ constexpr std::string_view strSubscription{ " subscription" sv };
57
59
58
60
// Pass a common bundle of parameters to all of the generated Object::getField accessors in a SelectionSet
59
61
struct SelectionSetParams
You can’t perform that action at this time.
0 commit comments