aboutsummaryrefslogtreecommitdiff
path: root/src/common/string_util.h
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2022-05-20 23:35:10 -0400
committerGitHub <noreply@github.com>2022-05-20 23:35:10 -0400
commit4eb7f6c04473e3f90e2622ee00b822febe1ccef9 (patch)
treeb037dccee6a4b1a0b4228bef5d2af2f38526fb90 /src/common/string_util.h
parentb57df1dcb9a3300b882f8993907b73c339b47356 (diff)
parent5035df27c357d5807432aa0056cc4e428884d988 (diff)
Merge pull request #8342 from lat9nq/clang-latest-stdc++
general: Use Common::U16StringFromBuffer in place of QString::toStdU16String
Diffstat (limited to 'src/common/string_util.h')
-rw-r--r--src/common/string_util.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/string_util.h b/src/common/string_util.h
index a33830aec1..ce18a33cfe 100644
--- a/src/common/string_util.h
+++ b/src/common/string_util.h
@@ -44,6 +44,8 @@ bool SplitPath(const std::string& full_path, std::string* _pPath, std::string* _
#endif
+[[nodiscard]] std::u16string U16StringFromBuffer(const u16* input, std::size_t length);
+
/**
* Compares the string defined by the range [`begin`, `end`) to the null-terminated C-string
* `other` for equality.