Skip to content

Commit

Permalink
Fix min/max issues on Windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
ras0219-msft committed Jan 24, 2018
1 parent e5a6354 commit 7db3585
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Release/src/http/client/http_client_asio.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@

#include "stdafx.h"

#undef min
#undef max

#include "cpprest/asyncrt_utils.h"
#include "../common/internal_http_helpers.h"

Expand Down
4 changes: 4 additions & 0 deletions Release/src/http/listener/http_server_asio.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
*/
#include "stdafx.h"

#undef min
#undef max

#include <boost/algorithm/string/find.hpp>
#include <boost/algorithm/string/predicate.hpp>
#include <boost/asio/read_until.hpp>
Expand Down

0 comments on commit 7db3585

Please sign in to comment.