blob: c955396709bcafe0c024b42ca3da1b0b13b495ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--- core/src/TextUtfEncoding.h 2023-02-24 11:30:34.505322162 +0000
+++ core/src/TextUtfEncoding.h 2023-02-24 11:30:40.425049296 +0000
@@ -12,8 +12,8 @@
// The following functions are not required anymore after Result::text() now returns utf8 natively and the encoders accept utf8 as well.
-[[deprecated]] std::string ToUtf8(std::wstring_view str);
-[[deprecated]] std::string ToUtf8(std::wstring_view str, const bool angleEscape);
-[[deprecated]] std::wstring FromUtf8(std::string_view utf8);
+std::string ToUtf8(std::wstring_view str);
+std::string ToUtf8(std::wstring_view str, const bool angleEscape);
+std::wstring FromUtf8(std::string_view utf8);
} // namespace ZXing::TextUtfEncoding
|