diff options
author | Egor Pugin <egor.pugin@gmail.com> | 2020-03-13 13:45:37 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-13 13:45:37 +0300 |
commit | dee88d3099607d6fa49e2775aaa8a6cb2d77d710 (patch) | |
tree | 74e5daa9a58f3a97b417925a212ac2cd31487a5e /src/net/Url.cpp | |
parent | d1c6a8062577f5ce58105afff2d0a1887bfff957 (diff) | |
parent | 26fac5bf7e87dd5704a967ee4c744228b93d20b7 (diff) |
Merge pull request #129 from reo7sp/fix/use_proper_types
fix: use C++ fixed-width types instead of C types
Diffstat (limited to 'src/net/Url.cpp')
-rw-r--r-- | src/net/Url.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/net/Url.cpp b/src/net/Url.cpp index c767b47..016a97f 100644 --- a/src/net/Url.cpp +++ b/src/net/Url.cpp @@ -1,5 +1,7 @@ #include "tgbot/net/Url.h" +#include <cstddef> + #include "tgbot/tools/StringTools.h" using namespace std; @@ -12,7 +14,7 @@ Url::Url(const string& url) { bool isPathParsed = false; bool isQueryParsed = false; - for (size_t i = 0, count = url.length(); i < count; ++i) { + for (std::size_t i = 0, count = url.length(); i < count; ++i) { char c = url[i]; if (!isProtocolParsed) { |