diff options
| author | callum_linden <none@none> | 2014-10-19 15:19:44 -0700 | 
|---|---|---|
| committer | callum_linden <none@none> | 2014-10-19 15:19:44 -0700 | 
| commit | 685c36ef50559fcd976a71021bee3ced0b171d0a (patch) | |
| tree | 0dc097425dbfa516070a59608a0c321f4d12a673 | |
| parent | e75752c8c0ea655efc167d7b9061f88a778191d0 (diff) | |
Update to build on Xcode 6.0: assignment and comparison operator mixup
| -rwxr-xr-x | indra/newview/llinventoryfilter.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/indra/newview/llinventoryfilter.cpp b/indra/newview/llinventoryfilter.cpp index f211acedf0..2773fbec12 100755 --- a/indra/newview/llinventoryfilter.cpp +++ b/indra/newview/llinventoryfilter.cpp @@ -550,7 +550,7 @@ void LLInventoryFilter::setFilterSubString(const std::string& string)  		if (mFilterOps.mFilterTypes == FILTERTYPE_UUID)  		{  			mFilterOps.mFilterTypes &= ~FILTERTYPE_UUID; -			mFilterOps.mFilterUUID == LLUUID::null; +			mFilterOps.mFilterUUID = LLUUID::null;  			setModified(FILTER_RESTART);  		} | 
