Add missing std:: namespace (#1946)

This commit is contained in:
Bjoe
2017-10-18 23:15:20 +02:00
committed by Aleksandar Fabijanic
parent 94e9f2eec2
commit 3ddda2f163
5 changed files with 25 additions and 25 deletions

View File

@@ -317,7 +317,7 @@ bool intToStr(T value,
size = ptr - result;
poco_assert_dbg (size <= ptr.span());
poco_assert_dbg ((-1 == width) || (size >= size_t(width)));
poco_assert_dbg ((-1 == width) || (size >= std::size_t(width)));
*ptr-- = '\0';
char* ptrr = result;
@@ -392,7 +392,7 @@ bool uIntToStr(T value,
size = ptr - result;
poco_assert_dbg (size <= ptr.span());
poco_assert_dbg ((-1 == width) || (size >= size_t(width)));
poco_assert_dbg ((-1 == width) || (size >= std::size_t(width)));
*ptr-- = '\0';
char* ptrr = result;