From c7e862d6a588a4828213a09d69da8c1120c469b5 Mon Sep 17 00:00:00 2001 From: "Thomas Lange [tl]" Date: Fri, 10 Dec 2010 09:13:28 +0100 Subject: cws tl84: warning-free code --- starmath/inc/parse.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'starmath') diff --git a/starmath/inc/parse.hxx b/starmath/inc/parse.hxx index 4c672df058ce..e30193490539 100755 --- a/starmath/inc/parse.hxx +++ b/starmath/inc/parse.hxx @@ -270,7 +270,7 @@ public: const SmErrorDesc * PrevError(); const SmErrorDesc * GetError(USHORT i = 0xFFFF); - bool IsUsedSymbol( const String &rSymbolName ) const { m_aUsedSymbols.find( rSymbolName ) != m_aUsedSymbols.end(); } + bool IsUsedSymbol( const String &rSymbolName ) const { return m_aUsedSymbols.find( rSymbolName ) != m_aUsedSymbols.end(); } std::set< rtl::OUString > GetUsedSymbols() const { return m_aUsedSymbols; } }; -- cgit