diff options
author | callum_linden <none@none> | 2014-10-17 16:08:25 -0700 |
---|---|---|
committer | callum_linden <none@none> | 2014-10-17 16:08:25 -0700 |
commit | 6a15d2d95ddb8dd285c635ff86f3a010c99d406c (patch) | |
tree | 856bc7e855a5c517fd0062aa40b9913ec32251a8 /indra/llcorehttp | |
parent | bc49197ea84997d06dee6a92f60431de9fd0eb8c (diff) |
Update to build on Xcode 6.0: clang detecting unsigned int (size_t) comparison with <0 [-Wtautological-compare]
Diffstat (limited to 'indra/llcorehttp')
-rwxr-xr-x | indra/llcorehttp/bufferstream.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/indra/llcorehttp/bufferstream.cpp b/indra/llcorehttp/bufferstream.cpp index 6553900eef..678bf5ea9f 100755 --- a/indra/llcorehttp/bufferstream.cpp +++ b/indra/llcorehttp/bufferstream.cpp @@ -257,8 +257,6 @@ std::streampos BufferArrayStreamBuf::seekoff(std::streamoff off, return ret; } - if (pos < 0) - return ret; if (pos > mBufferArray->size()) { pos = mBufferArray->size(); |