Skip to content

Commit

Permalink
Update to the latest oatpp API.
Browse files Browse the repository at this point in the history
  • Loading branch information
lganzzzo committed Dec 21, 2020
1 parent b7c0507 commit 7d57772
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cmake_minimum_required(VERSION 3.1 FATAL_ERROR)
## use these variables to configure module installation

set(OATPP_THIS_MODULE_NAME oatpp-curl) ## name of the module (also name of folders in installation dirs)
set(OATPP_THIS_MODULE_VERSION "1.2.0") ## version of the module (also sufix of folders in installation dirs)
set(OATPP_THIS_MODULE_VERSION "1.2.5") ## version of the module (also sufix of folders in installation dirs)
set(OATPP_THIS_MODULE_LIBRARIES oatpp-curl) ## list of libraries to find when find_package is called
set(OATPP_THIS_MODULE_TARGETS oatpp-curl) ## list of targets to install
set(OATPP_THIS_MODULE_DIRECTORIES oatpp-curl) ## list of directories to install
Expand Down
4 changes: 2 additions & 2 deletions src/oatpp-curl/io/BodyDecoder.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ class BodyDecoder : public oatpp::web::protocol::http::incoming::BodyDecoder {

/**
* Typedef for headers map. Headers map key is case-insensitive.
* For more info see &id:oatpp::data::share::LazyStringMap;.
* For more info see &id:oatpp::data::share::LazyStringMultimap;.
*/
typedef oatpp::data::share::LazyStringMap<oatpp::data::share::StringKeyLabelCI_FAST> Headers;
typedef oatpp::data::share::LazyStringMultimap<oatpp::data::share::StringKeyLabelCI_FAST> Headers;
public:

/**
Expand Down

0 comments on commit 7d57772

Please sign in to comment.