Skip to content

Commit

Permalink
馃挌 Fix types in GCC-specific type
Browse files Browse the repository at this point in the history
  • Loading branch information
ThePhD committed Aug 13, 2021
1 parent 4630fe6 commit fe70105
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/basic/source/rope_transcode_view.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ int main(int, char*[]) {
// View the char-based UTF-8 of the rope
// as a sequence of UTF-16 characters
using utf16_from_utf8_rope
= ztd::text::transcode_view<ztd::text::basic_utf8<char>, ztd::text::utf16, rope_subrange>;
= ztd::text::transcode_view<ztd::text::compat_utf8_t, ztd::text::utf16_t, rope_subrange>;
utf16_from_utf8_rope transcoded_rope_view(rope_view);

std::cout << "UTF-16 Code Units, from the Rope:" << std::endl;
Expand Down

0 comments on commit fe70105

Please sign in to comment.