diff options
| author | Nat Goodspeed <nat@lindenlab.com> | 2016-12-20 10:42:22 -0500 | 
|---|---|---|
| committer | Nat Goodspeed <nat@lindenlab.com> | 2016-12-20 10:42:22 -0500 | 
| commit | 65cf4912f6e566fdb3e6f835cc0f45dbb3351304 (patch) | |
| tree | 2a737e817730228e2b1b732b1b7c0fc7f34659a5 /indra/newview | |
| parent | 573287b50f5005a279ea1ec42c4ddc18bd9c996b (diff) | |
DRTVWR-418: Another fix for std::string::find() return type.
Diffstat (limited to 'indra/newview')
| -rw-r--r-- | indra/newview/llviewermessage.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/indra/newview/llviewermessage.cpp b/indra/newview/llviewermessage.cpp index 68d5e4ba2d..333b6703fe 100644 --- a/indra/newview/llviewermessage.cpp +++ b/indra/newview/llviewermessage.cpp @@ -2596,7 +2596,7 @@ void process_improved_im(LLMessageSystem *msg, void **user_data)  			// The group notice packet does not have an AgentID.  Obtain one from the name cache.  			// If last name is "Resident" strip it out so the cache name lookup works. -			U32 index = original_name.find(" Resident"); +			std::string::size_type index = original_name.find(" Resident");  			if (index != std::string::npos)  			{  				original_name = original_name.substr(0, index); | 
