From 5db9daaff18c6dcb53e9fa1934d23dcbab412aa1 Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Tue, 12 Aug 2014 23:37:29 -0700 Subject: [PATCH] fix compile error in svg_renderer_tests/path_element_test.cpp - refs #2355 --- include/mapnik/map.hpp | 2 +- tests/cpp_tests/svg_renderer_tests/path_element_test.cpp | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/include/mapnik/map.hpp b/include/mapnik/map.hpp index 25bea6dcf..6e3077d6d 100644 --- a/include/mapnik/map.hpp +++ b/include/mapnik/map.hpp @@ -24,8 +24,8 @@ #define MAPNIK_MAP_HPP // mapnik -#include #include +#include #include #include #include diff --git a/tests/cpp_tests/svg_renderer_tests/path_element_test.cpp b/tests/cpp_tests/svg_renderer_tests/path_element_test.cpp index fa3a5b914..e4c46a1d5 100644 --- a/tests/cpp_tests/svg_renderer_tests/path_element_test.cpp +++ b/tests/cpp_tests/svg_renderer_tests/path_element_test.cpp @@ -1,9 +1,5 @@ #define BOOST_TEST_MODULE path_element_tests -// boost -#include -#include - // mapnik #include #include @@ -18,6 +14,10 @@ #include #include +// boost +#include +#include + // stl #include #include