Skip to content

Commit 8413f2f

Browse files
committed
More post-merge fixes
1 parent 7f84ead commit 8413f2f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

lib/inc/sys_string/impl/util/util.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
#include <iterator>
1414
#include <algorithm>
1515
#include <string>
16+
#include <limits>
1617
#if SYS_STRING_USE_SPACESHIP_OPERATOR
1718
#include <compare>
1819
#endif

test/test_general.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ TEST_CASE( "Iteration", "[general]" ) {
141141
CHECK(converted == std::u32string{expected.rbegin(), expected.rend()});
142142

143143
converted.clear();
144-
for (char32_t c: sys_string::utf16_view(empty))
144+
for (char32_t c: sys_string::utf32_view(empty))
145145
{
146146
converted.push_back(c);
147147
}

0 commit comments

Comments
 (0)