diff options
author | callum_linden <none@none> | 2014-10-22 11:38:56 -0700 |
---|---|---|
committer | callum_linden <none@none> | 2014-10-22 11:38:56 -0700 |
commit | 221c521f23e7c661e0c36fcd7a8b40b9db18608f (patch) | |
tree | f87ab94b5aae14793c2ad8fedfd462ec4fafb7ba /indra | |
parent | 0bcfb017cec463f6bf79efcc45754dbe6ddb20a2 (diff) |
Update to build on Xcode 6.0 (fix unit tests): remove unused statement warning
Diffstat (limited to 'indra')
-rwxr-xr-x | indra/llcommon/tests/lleventcoro_test.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/indra/llcommon/tests/lleventcoro_test.cpp b/indra/llcommon/tests/lleventcoro_test.cpp index cb5e15eff2..2096807e53 100755 --- a/indra/llcommon/tests/lleventcoro_test.cpp +++ b/indra/llcommon/tests/lleventcoro_test.cpp @@ -94,7 +94,6 @@ using coroutines::coroutine; template<typename Iter> bool match(Iter first, Iter last, std::string match) { std::string::iterator i = match.begin(); - i != match.end(); for(; (first != last) && (i != match.end()); ++i) { if (*first != *i) return false; |