diff --git a/src/utils/string_utils.hpp b/src/utils/string_utils.hpp index 57af25f7d..3c41db7d1 100644 --- a/src/utils/string_utils.hpp +++ b/src/utils/string_utils.hpp @@ -225,6 +225,17 @@ namespace StringUtils return insertValues(s, all_vals); } + // ------------------------------------------------------------------------ + /** Like the other ones above but for wide strings */ + template + irr::core::stringw insertValues(const wchar_t* chars, const T1 &v1, + const T2 &v2, const T3 &v3, const T4 &v4, + const T5 &v5) + { + irr::core::stringw s(chars); + return insertValues(s, v1, v2, v3, v4, v5); + } + // ------------------------------------------------------------------------ /** Like the other ones above but for wide strings */ template