diff options
| author | Steve Bennetts <steve@lindenlab.com> | 2009-11-23 18:10:47 -0800 | 
|---|---|---|
| committer | Steve Bennetts <steve@lindenlab.com> | 2009-11-23 18:10:47 -0800 | 
| commit | db1631e4c0986a07cb9290ff4e910ba1d15f5fe9 (patch) | |
| tree | b67c4acc4eba970901ec0d47ddee85e908f6ccce /indra | |
| parent | aec42e3fa2d8a1a4f0c07821821c114d72c339a7 (diff) | |
Fix for gcc warning
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/llmessage/llcachename.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/indra/llmessage/llcachename.h b/indra/llmessage/llcachename.h index 29601ddc63..111cc8b650 100644 --- a/indra/llmessage/llcachename.h +++ b/indra/llmessage/llcachename.h @@ -87,8 +87,8 @@ public:  	BOOL getFullName(const LLUUID& id, std::string& fullname);  	// Reverse lookup of UUID from name -	BOOL LLCacheName::getUUID(const std::string& first, const std::string& last, LLUUID& id); -	BOOL LLCacheName::getUUID(const std::string& fullname, LLUUID& id); +	BOOL getUUID(const std::string& first, const std::string& last, LLUUID& id); +	BOOL getUUID(const std::string& fullname, LLUUID& id);  	// If available, this method copies the group name into the string  	// provided. The caller must allocate at least | 
