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 33
33
34
34
using namespace std ::literals;
35
35
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" } ;
39
39
constexpr int c_version = 11 ; // HTTP 1.1
40
40
41
41
using namespace graphql ;
Original file line number Diff line number Diff line change 36
36
37
37
using namespace std ::literals;
38
38
39
- constexpr auto c_host = " 127.0.0.1" sv ;
39
+ constexpr boost::asio::string_view c_host { " 127.0.0.1" } ;
40
40
constexpr unsigned short c_port = 8080 ;
41
- constexpr auto c_target = " /graphql" sv ;
41
+ constexpr boost::asio::string_view c_target { " /graphql" } ;
42
42
43
43
using namespace graphql ;
44
44
You can’t perform that action at this time.
0 commit comments