aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2016-12-21 03:05:18 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2016-12-21 03:05:18 +0000
commit9dd38b4d1f01fded878ef6b5488e48cccc5f4acd (patch)
tree2cb5eefb0e5050149de2c7f0dc96f845b359e053 /vespalib
parent69c70ed148624f4cbad67ea78be0de972c93e69e (diff)
Only include what is needed.
Diffstat (limited to 'vespalib')
-rw-r--r--vespalib/src/vespa/vespalib/geo/zcurve.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/vespalib/src/vespa/vespalib/geo/zcurve.cpp b/vespalib/src/vespa/vespalib/geo/zcurve.cpp
index 07435f90aff..b53bcf8d10e 100644
--- a/vespalib/src/vespa/vespalib/geo/zcurve.cpp
+++ b/vespalib/src/vespa/vespalib/geo/zcurve.cpp
@@ -1,11 +1,8 @@
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-#include <vespa/fastos/fastos.h>
#include <vespa/vespalib/geo/zcurve.h>
#include <vespa/vespalib/util/priority_queue.h>
#include <vespa/vespalib/util/fiddle.h>
-#include <vespa/log/log.h>
-LOG_SETUP(".vespalib.geo.zcurve");
namespace vespalib {
namespace geo {
@@ -142,7 +139,6 @@ ZCurve::find_ranges(int min_x, int min_y,
}
RangeVector ranges = splitter.extract_ranges();
std::sort(ranges.begin(), ranges.end());
- LOG(debug, "split bounding box into %zu z-ranges", ranges.size());
return ranges;
}