File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 3333
3434using namespace std ::literals;
3535
36- constexpr auto c_host = " 127.0.0.1" sv ;
37- constexpr auto c_port = " 8080" sv ;
38- constexpr auto c_target = " /graphql" sv ;
36+ constexpr boost::asio::string_view c_host { " 127.0.0.1" } ;
37+ constexpr boost::asio::string_view c_port { " 8080" } ;
38+ constexpr boost::asio::string_view c_target { " /graphql" } ;
3939constexpr int c_version = 11 ; // HTTP 1.1
4040
4141using namespace graphql ;
Original file line number Diff line number Diff line change 3636
3737using namespace std ::literals;
3838
39- constexpr auto c_host = " 127.0.0.1" sv ;
39+ constexpr boost::asio::string_view c_host { " 127.0.0.1" } ;
4040constexpr unsigned short c_port = 8080 ;
41- constexpr auto c_target = " /graphql" sv ;
41+ constexpr boost::asio::string_view c_target { " /graphql" } ;
4242
4343using namespace graphql ;
4444
You can’t perform that action at this time.
0 commit comments