diff options
| author | Nat Goodspeed <nat@lindenlab.com> | 2012-01-23 17:29:42 -0500 | 
|---|---|---|
| committer | Nat Goodspeed <nat@lindenlab.com> | 2012-01-23 17:29:42 -0500 | 
| commit | da5d243c8f76f43a6bb4000402fade76eee0be33 (patch) | |
| tree | 1cee231e3848b147dddfed06ff19320d27bbc0af | |
| parent | 199e875210435cbc914e80bf3eb6be6c985fce1c (diff) | |
LLStringUtil methods are conventionally static.
| -rw-r--r-- | indra/llcommon/llstring.h | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llstring.h b/indra/llcommon/llstring.h index d3f1d01aa2..4c3936f9ab 100644 --- a/indra/llcommon/llstring.h +++ b/indra/llcommon/llstring.h @@ -307,7 +307,7 @@ public:  	 * quote it, escape any embedded double-quote with the escape string (default  	 * backslash).  	 */ -	string_type quote(const string_type& str, const string_type& escape="\\"); +	static string_type quote(const string_type& str, const string_type& escape="\\");  	/**  	 * @brief Unsafe way to make ascii characters. You should probably  | 
