mirror of
https://github.com/yhirose/cpp-httplib.git
synced 2025-05-15 09:18:27 +00:00
Fixed warnings
This commit is contained in:
parent
a0fe91e84d
commit
359b06681b
1 changed files with 6 additions and 2 deletions
|
@ -54,8 +54,10 @@
|
|||
#include <limits>
|
||||
#include <vector>
|
||||
|
||||
#pragma warning( push )
|
||||
#pragma warning( disable : 4996)
|
||||
#if defined(_MSC_VER)
|
||||
#pragma warning(push)
|
||||
#pragma warning(disable : 4996)
|
||||
#endif
|
||||
|
||||
// Copyright 2005, Google Inc.
|
||||
// All rights reserved.
|
||||
|
@ -19547,6 +19549,8 @@ bool StaticAssertTypeEq() {
|
|||
|
||||
} // namespace testing
|
||||
|
||||
#if defined(_MSC_VER)
|
||||
#pragma warning( pop )
|
||||
#endif
|
||||
|
||||
#endif // GTEST_INCLUDE_GTEST_GTEST_H_
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue