diff options
author | nat-goodspeed <nat@lindenlab.com> | 2024-02-15 11:47:16 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-15 11:47:16 -0500 |
commit | de72b1d573897c24e307f63b071fd5f02ce851c1 (patch) | |
tree | 270b33a014a7b138f4ab35b2176038309ed4f0f7 /indra/llcommon/stringize.h | |
parent | 9b1796df73f2d4fa19517f390258f798c10bff1e (diff) | |
parent | d583fb8badd8060c0f74bcb6e99bb6e7d08a67d0 (diff) |
Merge pull request #798 from secondlife/helpcmd
Add help() function to Lua "builtins."
Diffstat (limited to 'indra/llcommon/stringize.h')
-rw-r--r-- | indra/llcommon/stringize.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/llcommon/stringize.h b/indra/llcommon/stringize.h index c0b13135f9..63d44a7272 100644 --- a/indra/llcommon/stringize.h +++ b/indra/llcommon/stringize.h @@ -88,13 +88,13 @@ struct gstringize_impl }; // partially specialize for a single STRING argument - -// note that ll_convert<T>(T) already handles the trivial case +// note that ll_convert_to<T>(T) already handles the trivial case template <typename OUTCHAR, typename INCHAR> struct gstringize_impl<OUTCHAR, std::basic_string<INCHAR>> { auto operator()(const std::basic_string<INCHAR>& arg) { - return ll_convert<std::basic_string<OUTCHAR>>(arg); + return ll_convert_to<std::basic_string<OUTCHAR>>(arg); } }; @@ -105,7 +105,7 @@ struct gstringize_impl<OUTCHAR, INCHAR*> { auto operator()(const INCHAR* arg) { - return ll_convert<std::basic_string<OUTCHAR>>(arg); + return ll_convert_to<std::basic_string<OUTCHAR>>(arg); } }; |