]> granicus.if.org Git - taglib/commitdiff
Correct the order of #includes in tests.
authorTsuda Kageyu <tsuda.kageyu@gmail.com>
Mon, 3 Aug 2015 02:41:55 +0000 (11:41 +0900)
committerTsuda Kageyu <tsuda.kageyu@gmail.com>
Mon, 3 Aug 2015 02:41:55 +0000 (11:41 +0900)
tests/test_list.cpp
tests/test_map.cpp
tests/test_trueaudio.cpp
tests/test_wavpack.cpp

index 1b3156b574237f22710fbcd0ad1455cfc23c6aae..fc3032201a37621c2324484f3ba83738166b6ca3 100644 (file)
@@ -22,8 +22,8 @@
  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include <cppunit/extensions/HelperMacros.h>
 #include <tlist.h>
+#include <cppunit/extensions/HelperMacros.h>
 
 using namespace std;
 using namespace TagLib;
@@ -51,7 +51,7 @@ public:
     l3.append(3);
     l3.append(4);
     CPPUNIT_ASSERT(l1 == l3);
-    
+
     List<int> l4 = l1;
     List<int>::Iterator it = l4.find(3);
     *it = 33;
index 5fdea15798b1cab04e850729f9cbcec3d2bba257..c8f6b7f7a3ba6bb91defdf15b1c5b9d7cff2f456 100644 (file)
@@ -1,6 +1,6 @@
-#include <cppunit/extensions/HelperMacros.h>
 #include <tstring.h>
 #include <tmap.h>
+#include <cppunit/extensions/HelperMacros.h>
 
 using namespace std;
 using namespace TagLib;
index 33cb19041cb68bc96a17d91fed37e2a9897cce0b..00b81edee9a994610efe8f40a55617fdfcafb5cc 100644 (file)
@@ -1,7 +1,7 @@
-#include <cppunit/extensions/HelperMacros.h>
 #include <string>
 #include <stdio.h>
 #include <trueaudiofile.h>
+#include <cppunit/extensions/HelperMacros.h>
 #include "utils.h"
 
 using namespace std;
index 656d39a2ac2f816c32b0ccdf401b758276b9938c..5befbff3c0e8f3f897098832e8f949fe0b2c094a 100644 (file)
@@ -1,9 +1,9 @@
-#include <cppunit/extensions/HelperMacros.h>
 #include <string>
 #include <stdio.h>
 #include <tag.h>
 #include <tbytevectorlist.h>
 #include <wavpackfile.h>
+#include <cppunit/extensions/HelperMacros.h>
 #include "utils.h"
 
 using namespace std;