Skip to content

Commit

Permalink
fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
srz-zumix committed Nov 22, 2017
1 parent f391491 commit e238892
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/impl/iutest_charcode.ipp
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ IUTEST_PRAGMA_CRT_SECURE_WARN_DISABLE_BEGIN()
{
cp = lead;
}
const size_t len = c32rtomb(mbs, cp, &state);
const size_t len = ::std::c32rtomb(mbs, cp, &state);
if( len != static_cast<size_t>(-1) )
{
mbs[len] = '\0';
Expand Down Expand Up @@ -267,7 +267,7 @@ IUTEST_PRAGMA_CRT_SECURE_WARN_DISABLE_BEGIN()
{
cp = lead;
}
const size_t len = c32rtomb(mbs, cp, &state);
const size_t len = ::std::c32rtomb(mbs, cp, &state);
if( len != static_cast<size_t>(-1) )
{
mbs[len] = '\0';
Expand Down Expand Up @@ -298,7 +298,7 @@ IUTEST_IPP_INLINE::std::string IUTEST_ATTRIBUTE_UNUSED_ WideStringToUTF8(const c
IUTEST_PRAGMA_CRT_SECURE_WARN_DISABLE_BEGIN()
for( size_t i = 0; i < length; ++i )
{
const size_t len = c32rtomb(mbs, str[i], &state);
const size_t len = ::std::c32rtomb(mbs, str[i], &state);
if( len != static_cast<size_t>(-1) )
{
mbs[len] = '\0';
Expand Down

0 comments on commit e238892

Please sign in to comment.