Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Zolotarev <deathbaba@gmail.com>2011-10-28 02:32:07 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:27:06 +0300
commit4c097e90dec877c53f8293cc3dabe83207617d39 (patch)
treecc4427ec7397e1fa32eff3f5a9afde8bd19e82ae /geometry
parentdc7c41a37420faf4fb2940a0cdbd5df372bb3a54 (diff)
Compilation speed up by removing unused start/stop_mem_debug include
Diffstat (limited to 'geometry')
-rw-r--r--geometry/angles.hpp4
-rw-r--r--geometry/geometry_tests/intersect_test.cpp4
-rw-r--r--geometry/point2d.hpp3
-rw-r--r--geometry/rect2d.hpp3
-rw-r--r--geometry/robust_orientation.cpp3
5 files changed, 2 insertions, 15 deletions
diff --git a/geometry/angles.hpp b/geometry/angles.hpp
index ba0ed7bcd3..d56677a418 100644
--- a/geometry/angles.hpp
+++ b/geometry/angles.hpp
@@ -4,7 +4,7 @@
#include "point2d.hpp"
#include "../base/matrix.hpp"
-#include "../base/start_mem_debug.hpp"
+
namespace ang
{
@@ -114,5 +114,3 @@ namespace ang
}
};
}
-
-#include "../base/stop_mem_debug.hpp"
diff --git a/geometry/geometry_tests/intersect_test.cpp b/geometry/geometry_tests/intersect_test.cpp
index ddec9a3ef8..45981cf544 100644
--- a/geometry/geometry_tests/intersect_test.cpp
+++ b/geometry/geometry_tests/intersect_test.cpp
@@ -7,8 +7,6 @@
#include "../../geometry/rect_intersect.hpp"
#include "../../geometry/angles.hpp"
-#include "../../base/start_mem_debug.hpp"
-
using namespace test;
@@ -132,7 +130,7 @@ UNIT_TEST(IntersectRect_Section)
check_eps_boundaries(r);
}
-namespace
+namespace
{
void check_point_in_rect(m2::RectD const & r, m2::PointD const & p)
{
diff --git a/geometry/point2d.hpp b/geometry/point2d.hpp
index 07809be8a3..5eac29a852 100644
--- a/geometry/point2d.hpp
+++ b/geometry/point2d.hpp
@@ -8,7 +8,6 @@
#include "../std/sstream.hpp"
#include "../std/typeinfo.hpp"
-#include "../base/start_mem_debug.hpp"
namespace m2
{
@@ -295,5 +294,3 @@ namespace m2
typedef Point<int32_t> PointI;
typedef Point<int64_t> PointI64;
}
-
-#include "../base/stop_mem_debug.hpp"
diff --git a/geometry/rect2d.hpp b/geometry/rect2d.hpp
index 650ac9df84..3f94f94207 100644
--- a/geometry/rect2d.hpp
+++ b/geometry/rect2d.hpp
@@ -8,7 +8,6 @@
#include "../std/limits.hpp"
#include "../std/type_traits.hpp"
-#include "../base/start_mem_debug.hpp"
namespace m2
{
@@ -353,5 +352,3 @@ namespace m2
return out.str();
}
}
-
-#include "../base/stop_mem_debug.hpp"
diff --git a/geometry/robust_orientation.cpp b/geometry/robust_orientation.cpp
index 3bfa4b2a9c..b0595551fa 100644
--- a/geometry/robust_orientation.cpp
+++ b/geometry/robust_orientation.cpp
@@ -7,9 +7,6 @@ extern "C"
#include "../3party/robust/predicates.c"
}
-#include "../base/start_mem_debug.hpp"
-
-
namespace m2 { namespace robust
{
bool Init()