Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Include/httpClient/pal.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

#include <httpClient/config.h>

#if _WIN32
#if defined(_WIN32)

#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
Expand Down
2 changes: 1 addition & 1 deletion Source/Common/utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ class hc_task : public std::enable_shared_from_this<hc_task>

static inline int str_icmp(const http_internal_string& left, const http_internal_string& right)
{
#if _WIN32
#if defined(_WIN32)
return _stricmp(left.c_str(), right.c_str());
#else
return strcasecmp(left.c_str(), right.c_str());
Expand Down