From 7290a9a8b348d20b21a890a215c5ca545fa8e274 Mon Sep 17 00:00:00 2001 From: Jeremiah Willcock Date: Tue, 20 Apr 2010 17:54:16 +0000 Subject: [PATCH] Fixed tab and no-newline-at-end-of-file issues from inspection report [SVN r61435] --- test/generic_assoc_test.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/generic_assoc_test.hpp b/test/generic_assoc_test.hpp index 50931c0..5d10d72 100644 --- a/test/generic_assoc_test.hpp +++ b/test/generic_assoc_test.hpp @@ -402,9 +402,9 @@ void test_generic_assoc::test_insert_before for(vec_iterator it(--values.end()); true; --it){ testset.push_front(*it); - if(it == values.begin()){ + if(it == values.begin()){ break; - } + } } BOOST_TEST(testset.size() == values.size()); TEST_INTRUSIVE_SEQUENCE_EXPECTED(values, testset.begin());