diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2012-09-06 11:49:28 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-09-06 11:49:28 +0200 |
commit | 5fc1d590e7e57b15eab64770880a52e44c5cca71 (patch) | |
tree | cb789cca96c92590b2b438ffcb1ae53d935c8823 /sc | |
parent | 9382fa6ce2fedad19742688d32d0981335c7dd21 (diff) |
warning C4702: unreachable code
Change-Id: Ie9544ef452d7b9852bd2c31af1cb42035e5c827b
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/core/data/conditio.cxx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sc/source/core/data/conditio.cxx b/sc/source/core/data/conditio.cxx index 5a0c4832ae59..8fddfe5e0590 100644 --- a/sc/source/core/data/conditio.cxx +++ b/sc/source/core/data/conditio.cxx @@ -63,7 +63,6 @@ bool ScFormatEntry::operator==( const ScFormatEntry& r ) const { case condformat::CONDITION: return static_cast<const ScCondFormatEntry&>(*this) == static_cast<const ScCondFormatEntry&>(r); - break; default: // TODO: implement also this case // actually return false for these cases is not that bad @@ -71,8 +70,6 @@ bool ScFormatEntry::operator==( const ScFormatEntry& r ) const // to think about the range return false; } - - return true; } bool lcl_HasRelRef( ScDocument* pDoc, ScTokenArray* pFormula, sal_uInt16 nRecursion = 0 ) |