diff options
| author | Xiaohong Bao <bao@lindenlab.com> | 2013-10-25 10:29:45 -0600 | 
|---|---|---|
| committer | Xiaohong Bao <bao@lindenlab.com> | 2013-10-25 10:29:45 -0600 | 
| commit | 555cf227ffed470184b55bc5a87b125da66f0a16 (patch) | |
| tree | 871213f0dbf487628eab0425707aeabb96af3d1d | |
| parent | bcba6ee3a5e8c34e4686e79dcd45f19a9caa2cfb (diff) | |
trivial: fix several weird compiling errors.
| -rwxr-xr-x | indra/llcommon/llqueuedthread.cpp | 2 | ||||
| -rwxr-xr-x | indra/llmessage/llassetstorage.cpp | 4 | ||||
| -rwxr-xr-x | indra/newview/llflexibleobject.cpp | 2 | ||||
| -rwxr-xr-x | indra/newview/llmeshrepository.cpp | 2 | ||||
| -rwxr-xr-x | indra/newview/llspatialpartition.cpp | 2 | 
5 files changed, 6 insertions, 6 deletions
| diff --git a/indra/llcommon/llqueuedthread.cpp b/indra/llcommon/llqueuedthread.cpp index 176761c17c..8cef4293cd 100755 --- a/indra/llcommon/llqueuedthread.cpp +++ b/indra/llcommon/llqueuedthread.cpp @@ -246,7 +246,7 @@ bool LLQueuedThread::addRequest(QueuedRequest* req)  // MAIN thread  bool LLQueuedThread::waitForResult(LLQueuedThread::handle_t handle, bool auto_complete)  { -	llassert (handle != nullHandle()) +	llassert (handle != nullHandle());  	bool res = false;  	bool waspaused = isPaused();  	bool done = false; diff --git a/indra/llmessage/llassetstorage.cpp b/indra/llmessage/llassetstorage.cpp index 94552750f4..8ba2535531 100755 --- a/indra/llmessage/llassetstorage.cpp +++ b/indra/llmessage/llassetstorage.cpp @@ -405,7 +405,7 @@ bool LLAssetStorage::findInStaticVFSAndInvokeCallback(const LLUUID& uuid, LLAsse  	if (user_data)  	{  		// The *user_data should not be passed without a callback to clean it up. -		llassert(callback != NULL) +		llassert(callback != NULL);  	}  	BOOL exists = mStaticVFS->getExists(uuid, type); @@ -445,7 +445,7 @@ void LLAssetStorage::getAssetData(const LLUUID uuid, LLAssetType::EType type, LL  	if (user_data)  	{  		// The *user_data should not be passed without a callback to clean it up. -		llassert(callback != NULL) +		llassert(callback != NULL);  	}  	if (mShutDown) diff --git a/indra/newview/llflexibleobject.cpp b/indra/newview/llflexibleobject.cpp index c589bea674..3cd4367891 100755 --- a/indra/newview/llflexibleobject.cpp +++ b/indra/newview/llflexibleobject.cpp @@ -660,7 +660,7 @@ void LLVolumeImplFlexible::doFlexibleUpdate()  	mSection[i].mdPosition = (mSection[i].mPosition - mSection[i-1].mPosition) * inv_section_length;  	// Create points -	llassert(mRenderRes > -1) +	llassert(mRenderRes > -1);  	S32 num_render_sections = 1<<mRenderRes;  	if (path->getPathLength() != num_render_sections+1)  	{ diff --git a/indra/newview/llmeshrepository.cpp b/indra/newview/llmeshrepository.cpp index 77ea965136..a876e1f755 100755 --- a/indra/newview/llmeshrepository.cpp +++ b/indra/newview/llmeshrepository.cpp @@ -736,7 +736,7 @@ void LLMeshRepoThread::loadMeshLOD(const LLVolumeParams& mesh_params, S32 lod)  		if (pending != mPendingLOD.end())  		{ //append this lod request to existing header request  			pending->second.push_back(lod); -			llassert(pending->second.size() <= LLModel::NUM_LODS) +			llassert(pending->second.size() <= LLModel::NUM_LODS);  		}  		else  		{ //if no header request is pending, fetch header diff --git a/indra/newview/llspatialpartition.cpp b/indra/newview/llspatialpartition.cpp index 55c0acd3f9..86d1948baa 100755 --- a/indra/newview/llspatialpartition.cpp +++ b/indra/newview/llspatialpartition.cpp @@ -1201,7 +1201,7 @@ public:  	{  		LLSpatialGroup* group = (LLSpatialGroup*)base_group; -		llassert(!group->hasState(LLSpatialGroup::DIRTY) && !group->isEmpty()) +		llassert(!group->hasState(LLSpatialGroup::DIRTY) && !group->isEmpty());  		if (mRes < 2)  		{ | 
