From 20d4db0fe3444e76b23ecdb058554c95eb311548 Mon Sep 17 00:00:00 2001 From: Kohei Yoshida Date: Mon, 29 Apr 2013 14:14:43 -0400 Subject: Add method to allow fetching of double array, and store it in token. Change-Id: If094dbf139e18ad23c73d6cf5a78ac4844132b14 --- include/formula/vectortoken.hxx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'include/formula') diff --git a/include/formula/vectortoken.hxx b/include/formula/vectortoken.hxx index 5af2690a5de6..90e28d836a75 100644 --- a/include/formula/vectortoken.hxx +++ b/include/formula/vectortoken.hxx @@ -39,7 +39,6 @@ class FORMULA_DLLPUBLIC DoubleVectorRefToken : public FormulaToken { std::vector maArrays; - size_t mnColSize; size_t mnRowSize; bool mbAbsStart:1; /// whether or not the start row position is absolute. @@ -47,8 +46,7 @@ class FORMULA_DLLPUBLIC DoubleVectorRefToken : public FormulaToken public: DoubleVectorRefToken( - const std::vector& rArrays, size_t nColSize, size_t nRowSize, - bool bAbsStart, bool bAbsEnd ); + const std::vector& rArrays, size_t nRowSize, bool bAbsStart, bool bAbsEnd ); const std::vector& GetArrays() const; }; -- cgit