Skip to content

Commit

Permalink
Merge pull request #105 from johannes-wolf/gcc13-compat
Browse files Browse the repository at this point in the history
GCC 13 Compatibility
  • Loading branch information
fklebert authored Jul 28, 2023
2 parents f101596 + 2d2041b commit b9bd868
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ endif()
if (NOT TARGET Catch2)
FetchContent_Declare(Catch2
GIT_REPOSITORY "https://github.com/catchorg/Catch2.git"
GIT_TAG "v3.1.0"
GIT_TAG "v3.4.0"
GIT_SHALLOW ON)
FetchContent_MakeAvailable(Catch2)
endif()
Expand Down
2 changes: 1 addition & 1 deletion conanfile.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ pybind11/2.10.4
CMakeDeps

[options]
openssl*:shared=True
openssl*:shared=True
3 changes: 2 additions & 1 deletion libs/httpcl/include/httpcl/uri.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
#include <string>
#include <map>
#include <stdexcept>
#include <cstdint>

namespace httpcl
{
Expand All @@ -16,7 +17,7 @@ struct URIComponents
std::string scheme;
std::string host;
std::string path;
uint16_t port = 0u;
std::uint16_t port = 0u;
std::string query;
std::multimap<std::string, std::string> queryVars;

Expand Down

0 comments on commit b9bd868

Please sign in to comment.