diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-11-19 09:20:46 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-11-19 09:20:46 +0100 |
commit | ccc297097891e62489e5d281a4ea128ec6b71361 (patch) | |
tree | bd12741a02e5bfc94a707291fab4d938160dff51 | |
parent | 71f3f362fd857f5b8095ca24217fe98560e7c0ae (diff) |
-Werror,-Wunused-private-field
Change-Id: I8832317e23691531e7c5c51f9f1572ce6962e5a3
-rw-r--r-- | sc/source/filter/oox/formulabuffer.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sc/source/filter/oox/formulabuffer.cxx b/sc/source/filter/oox/formulabuffer.cxx index d1cf118d13d2..4303b41a0b88 100644 --- a/sc/source/filter/oox/formulabuffer.cxx +++ b/sc/source/filter/oox/formulabuffer.cxx @@ -58,7 +58,7 @@ public: }; CachedTokenArray( ScDocument& rDoc ) : - mrDoc(rDoc), maCxt(&rDoc, formula::FormulaGrammar::GRAM_OOXML) {} + maCxt(&rDoc, formula::FormulaGrammar::GRAM_OOXML) {} ~CachedTokenArray() { @@ -106,7 +106,6 @@ public: private: typedef boost::unordered_map<SCCOL, Item*> ColCacheType; ColCacheType maCache; - ScDocument& mrDoc; sc::TokenStringContext maCxt; }; |