From f830177b3b0ef8a69fea2c728c7e0c65bf3c8223 Mon Sep 17 00:00:00 2001 From: Tsuda Kageyu Date: Mon, 3 Aug 2015 11:41:55 +0900 Subject: [PATCH] Correct the order of #includes in tests. --- tests/test_list.cpp | 4 ++-- tests/test_map.cpp | 2 +- tests/test_trueaudio.cpp | 2 +- tests/test_wavpack.cpp | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/test_list.cpp b/tests/test_list.cpp index 1b3156b5..fc303220 100644 --- a/tests/test_list.cpp +++ b/tests/test_list.cpp @@ -22,8 +22,8 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#include #include +#include using namespace std; using namespace TagLib; @@ -51,7 +51,7 @@ public: l3.append(3); l3.append(4); CPPUNIT_ASSERT(l1 == l3); - + List l4 = l1; List::Iterator it = l4.find(3); *it = 33; diff --git a/tests/test_map.cpp b/tests/test_map.cpp index 5fdea157..c8f6b7f7 100644 --- a/tests/test_map.cpp +++ b/tests/test_map.cpp @@ -1,6 +1,6 @@ -#include #include #include +#include using namespace std; using namespace TagLib; diff --git a/tests/test_trueaudio.cpp b/tests/test_trueaudio.cpp index 33cb1904..00b81ede 100644 --- a/tests/test_trueaudio.cpp +++ b/tests/test_trueaudio.cpp @@ -1,7 +1,7 @@ -#include #include #include #include +#include #include "utils.h" using namespace std; diff --git a/tests/test_wavpack.cpp b/tests/test_wavpack.cpp index 656d39a2..5befbff3 100644 --- a/tests/test_wavpack.cpp +++ b/tests/test_wavpack.cpp @@ -1,9 +1,9 @@ -#include #include #include #include #include #include +#include #include "utils.h" using namespace std;