1
0
Fork 0
mirror of https://gitlab.com/niansa/reaktor.git synced 2025-03-06 20:53:30 +01:00

Fixed is_unicode_emoji always returning true after size check

This commit is contained in:
niansa 2023-10-27 09:43:19 +02:00
parent 0dbd001dcd
commit 2db29db303

View file

@ -5512,5 +5512,5 @@ constexpr bool is_unicode_emoji(std::string_view str) {
if (str == emoji)
return true;
}
return true;
return false;
}