summaryrefslogtreecommitdiff
path: root/src/net/Url.cpp
diff options
context:
space:
mode:
authorAlexander Zaitsev <zamazan4ik@tut.by>2020-03-13 03:56:35 +0300
committerAlexander Zaitsev <zamazan4ik@tut.by>2020-03-13 03:56:35 +0300
commit26fac5bf7e87dd5704a967ee4c744228b93d20b7 (patch)
tree74e5daa9a58f3a97b417925a212ac2cd31487a5e /src/net/Url.cpp
parent806e7e5a3edf4fdf2b9c48469a7bc23307b200b0 (diff)
fix: use std::size_t instead of size_t
- use C++ size_t from std namespace instead of a version from global namespace Tested: - Local build - Unit-tests
Diffstat (limited to 'src/net/Url.cpp')
-rw-r--r--src/net/Url.cpp4
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) {