mirror of
https://github.com/yhirose/cpp-httplib.git
synced 2025-05-15 01:08:27 +00:00
Fixed minor code smells (#901)
This commit is contained in:
parent
faa5f1d802
commit
28e07bca16
2 changed files with 4 additions and 6 deletions
|
@ -395,7 +395,7 @@ struct Request {
|
|||
ContentReceiverWithProgress content_receiver;
|
||||
Progress progress;
|
||||
#ifdef CPPHTTPLIB_OPENSSL_SUPPORT
|
||||
const SSL *ssl;
|
||||
const SSL *ssl = nullptr;
|
||||
#endif
|
||||
|
||||
bool has_header(const char *key) const;
|
||||
|
@ -786,7 +786,7 @@ private:
|
|||
SocketOptions socket_options_ = default_socket_options;
|
||||
};
|
||||
|
||||
enum Error {
|
||||
enum class Error {
|
||||
Success = 0,
|
||||
Unknown,
|
||||
Connection,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue