summaryrefslogtreecommitdiff
path: root/indra/llcommon
diff options
context:
space:
mode:
authorcallum_linden <none@none>2014-10-22 11:38:56 -0700
committercallum_linden <none@none>2014-10-22 11:38:56 -0700
commit221c521f23e7c661e0c36fcd7a8b40b9db18608f (patch)
treef87ab94b5aae14793c2ad8fedfd462ec4fafb7ba /indra/llcommon
parent0bcfb017cec463f6bf79efcc45754dbe6ddb20a2 (diff)
Update to build on Xcode 6.0 (fix unit tests): remove unused statement warning
Diffstat (limited to 'indra/llcommon')
-rwxr-xr-xindra/llcommon/tests/lleventcoro_test.cpp1
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;