summaryrefslogtreecommitdiff
path: root/core/src/fxge/agg/agg23/agg_curves.h
diff options
context:
space:
mode:
authorChris Palmer <palmer@google.com>2014-08-28 14:44:46 -0700
committerChris Palmer <palmer@google.com>2014-08-28 14:44:46 -0700
commitd0c36505eebd0a755f77f98676db0b5bad2f2496 (patch)
treec4987c5ce4ed736d02feb5809fc6f89bf2ff01dc /core/src/fxge/agg/agg23/agg_curves.h
parentf105b19434fdeecac2dd2f78fed5b45ed2637ab3 (diff)
downloadpdfium-d0c36505eebd0a755f77f98676db0b5bad2f2496.tar.xz
Remove unused fields and stack locals.
Edge closer to getting PDFium to build in chromium_code mode. BUG=https://code.google.com/p/pdfium/issues/detail?id=29 R=bo_xu@foxitsoftware.com Review URL: https://codereview.chromium.org/437343002
Diffstat (limited to 'core/src/fxge/agg/agg23/agg_curves.h')
-rw-r--r--core/src/fxge/agg/agg23/agg_curves.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/core/src/fxge/agg/agg23/agg_curves.h b/core/src/fxge/agg/agg23/agg_curves.h
index 5719cbf508..61270e64a5 100644
--- a/core/src/fxge/agg/agg23/agg_curves.h
+++ b/core/src/fxge/agg/agg23/agg_curves.h
@@ -63,14 +63,12 @@ class curve4_div : public CFX_Object
{
public:
curve4_div() :
- m_cusp_limit(0),
m_count(0)
{}
curve4_div(FX_FLOAT x1, FX_FLOAT y1,
FX_FLOAT x2, FX_FLOAT y2,
FX_FLOAT x3, FX_FLOAT y3,
FX_FLOAT x4, FX_FLOAT y4) :
- m_cusp_limit(0),
m_count(0)
{
init(x1, y1, x2, y2, x3, y3, x4, y4);
@@ -134,7 +132,6 @@ private:
unsigned level);
FX_FLOAT m_distance_tolerance_square;
FX_FLOAT m_distance_tolerance_manhattan;
- FX_FLOAT m_cusp_limit;
unsigned m_count;
pod_deque<point_type> m_points;
};