mirror of
https://github.com/yhirose/cpp-httplib.git
synced 2025-05-15 09:18:27 +00:00
Removed get_header_value_int and use uint64_t for the return value of get_header_value_uint64
This commit is contained in:
parent
07ed076499
commit
8af85019dc
2 changed files with 6 additions and 13 deletions
|
@ -781,14 +781,7 @@ inline const char *get_header_value(const Headers &headers, const char *key,
|
|||
return def;
|
||||
}
|
||||
|
||||
inline int get_header_value_int(const Headers &headers, const char *key,
|
||||
int def = 0) {
|
||||
auto it = headers.find(key);
|
||||
if (it != headers.end()) { return std::stoi(it->second); }
|
||||
return def;
|
||||
}
|
||||
|
||||
inline unsigned long long get_header_value_uint64(const Headers &headers, const char *key,
|
||||
inline uint64_t get_header_value_uint64(const Headers &headers, const char *key,
|
||||
int def = 0) {
|
||||
auto it = headers.find(key);
|
||||
if (it != headers.end()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue