From: Tsuda Kageyu Date: Mon, 3 Aug 2015 02:41:55 +0000 (+0900) Subject: Correct the order of #includes in tests. X-Git-Tag: v1.10beta~27 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f830177b3b0ef8a69fea2c728c7e0c65bf3c8223;p=taglib Correct the order of #includes in tests. --- 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;