diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2009-07-31 14:19:44 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2009-07-31 14:19:44 -0400 |
commit | aaf870733a6ba4e0ff2ef93226897983950da046 (patch) | |
tree | 3ccd176b149b01a9afa4839b582b3eccee198881 /indra/llcommon/llstring.h | |
parent | 084983485f9e05ff9164fabe3244ffd6f33295cf (diff) | |
parent | 29607ab70edea79cfdceaa52d632d77e6699cb8f (diff) |
Update with palmer's round 1 changes
Diffstat (limited to 'indra/llcommon/llstring.h')
-rw-r--r-- | indra/llcommon/llstring.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/indra/llcommon/llstring.h b/indra/llcommon/llstring.h index eb36dafee3..24a8d49a54 100644 --- a/indra/llcommon/llstring.h +++ b/indra/llcommon/llstring.h @@ -345,9 +345,9 @@ public: template<class T> std::basic_string<T> LLStringUtilBase<T>::null;
template<class T> std::string LLStringUtilBase<T>::sLocale;
-typedef LL_COMMON_API LLStringUtilBase<char> LLStringUtil;
-typedef LL_COMMON_API LLStringUtilBase<llwchar> LLWStringUtil;
-typedef LL_COMMON_API std::basic_string<llwchar> LLWString;
+typedef LLStringUtilBase<char> LLStringUtil;
+typedef LLStringUtilBase<llwchar> LLWStringUtil;
+typedef std::basic_string<llwchar> LLWString;
//@ Use this where we want to disallow input in the form of "foo"
// This is used to catch places where english text is embedded in the code
@@ -419,7 +419,7 @@ LL_COMMON_API std::string rawstr_to_utf8(const std::string& raw); //
// We should never use UTF16 except when communicating with Win32!
//
-typedef LL_COMMON_API std::basic_string<U16> llutf16string;
+typedef std::basic_string<U16> llutf16string;
LL_COMMON_API LLWString utf16str_to_wstring(const llutf16string &utf16str, S32 len);
LL_COMMON_API LLWString utf16str_to_wstring(const llutf16string &utf16str);
|