summaryrefslogtreecommitdiff
path: root/starmath
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2014-12-16 18:44:10 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2014-12-16 18:45:51 +0900
commit2e0c474ab53325445c6dbac9aaeeafe5bb596e3f (patch)
tree1ab7e35bc2e80ad51439a631832d7cb9f1c4e722 /starmath
parent555f024f16d4407be3c9b0dbb15fb18c2f6f3b20 (diff)
Omit unused default value
Change-Id: I2b703312ddff29772b31cf74ab6408dbbe90a5db
Diffstat (limited to 'starmath')
-rw-r--r--starmath/inc/parse.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/starmath/inc/parse.hxx b/starmath/inc/parse.hxx
index c61bf42372c0..7b7a8a5f0bd0 100644
--- a/starmath/inc/parse.hxx
+++ b/starmath/inc/parse.hxx
@@ -119,7 +119,7 @@ public:
size_t AddError(SmParseError Type, SmNode *pNode);
const SmErrorDesc* NextError();
const SmErrorDesc* PrevError();
- const SmErrorDesc* GetError(size_t i = size_t(-1) );
+ const SmErrorDesc* GetError(size_t i);
static const SmTokenTableEntry* GetTokenTableEntry( const OUString &rName );
bool IsUsedSymbol( const OUString &rSymbolName ) const { return m_aUsedSymbols.find( rSymbolName ) != m_aUsedSymbols.end(); }
std::set< OUString > GetUsedSymbols() const { return m_aUsedSymbols; }