Fixed unused variable and ran clang-format. Tested on gcc/clang.

This commit is contained in:
Neil MacIntosh
2016-08-08 13:33:02 -07:00
parent 82389aa630
commit 0dd5f56bed
3 changed files with 20 additions and 14 deletions
-1
View File
@@ -831,7 +831,6 @@ SUITE(span_tests)
span<int>::iterator it = s.begin();
auto it2 = it + 1;
span<int>::const_iterator cit = s.cbegin();
auto cit2 = s.cbegin();
CHECK(it == cit);
CHECK(cit == it);