Skip to content
This repository was archived by the owner on Aug 29, 2025. It is now read-only.

Commit 9a831ac

Browse files
authored
Made use of the new tiny_utf8::string typedef
1 parent c37300b commit 9a831ac

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,10 @@ Note: ANSI suppport was dropped in Version 2.0 in favor of execution speed.
6666
#include <algorithm>
6767
#include <tinyutf8/tinyutf8.h>
6868
using namespace std;
69-
using namespace tiny_utf8;
7069

7170
int main()
7271
{
73-
utf8_string str = u8"!🌍 olleH";
72+
tiny_utf8::string str = u8"!🌍 olleH";
7473
for_each( str.rbegin() , str.rend() , []( char32_t codepoint ){
7574
cout << codepoint;
7675
} );

0 commit comments

Comments
 (0)