Fixed further warnings reported by clang.
This commit is contained in:
@@ -429,6 +429,7 @@ public:
|
||||
virtual void placeFence() = 0;
|
||||
virtual bool isCompleted() = 0;
|
||||
virtual void wait() = 0;
|
||||
virtual ~LLGLFence() {}
|
||||
};
|
||||
|
||||
class LLGLSyncFence : public LLGLFence
|
||||
|
||||
@@ -52,7 +52,7 @@ std::string JCFloaterAreaSearch::sSearchedDesc;
|
||||
std::string JCFloaterAreaSearch::sSearchedOwner;
|
||||
std::string JCFloaterAreaSearch::sSearchedGroup;
|
||||
|
||||
const std::string request_string = "JCFloaterAreaSearch::Requested_<EFBFBD><EFBFBD><EFBFBD>";
|
||||
const std::string request_string = "JCFloaterAreaSearch::Requested_\xF8\xA7\xB5";
|
||||
const F32 min_refresh_interval = 0.25f; // Minimum interval between list refreshes in seconds.
|
||||
|
||||
JCFloaterAreaSearch::JCFloaterAreaSearch() :
|
||||
|
||||
@@ -446,10 +446,10 @@ void MediaPluginExample::update( F64 milliseconds )
|
||||
};
|
||||
|
||||
if ( mXpos[ n ] + mXInc[ n ] < 0 || mXpos[ n ] + mXInc[ n ] >= mWidth - mBlockSize[ n ] )
|
||||
mXInc[ n ] =- mXInc[ n ];
|
||||
mXInc[ n ] = - mXInc[ n ];
|
||||
|
||||
if ( mYpos[ n ] + mYInc[ n ] < 0 || mYpos[ n ] + mYInc[ n ] >= mHeight - mBlockSize[ n ] )
|
||||
mYInc[ n ] =- mYInc[ n ];
|
||||
mYInc[ n ] = - mYInc[ n ];
|
||||
|
||||
mXpos[ n ] += mXInc[ n ];
|
||||
mYpos[ n ] += mYInc[ n ];
|
||||
|
||||
Reference in New Issue
Block a user