mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-15 07:14:46 +02:00
Add missing std:: namespace (#1946)
This commit is contained in:

committed by
Aleksandar Fabijanic

parent
94e9f2eec2
commit
3ddda2f163
@@ -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;
|
||||
|
Reference in New Issue
Block a user