1
0
mirror of synced 2025-07-29 11:01:13 +03:00

Code cleanup

This commit is contained in:
yhirose
2019-09-06 18:16:42 -04:00
parent c9238434e1
commit bfec81998b
2 changed files with 18 additions and 13 deletions

View File

@ -338,7 +338,8 @@ if (cli.send(requests, responses)) {
```cpp
httplib::Client cli("yahoo.com");
cli.follow_location(true);
auto ret = cli.Get("/");
auto res = cli.Get("/");
res->status; // 200
```
OpenSSL Support