sc/source/core/tool/formularesult.cxx |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit fbfacb8ce70910d096ad332a093dbbc5b54ea005
Author: Michael Stahl <mst...@redhat.com>
Date:   Tue Jul 2 21:19:42 2013 +0200

    avoid enumeration value ... not handled in switch [-Werror=switch]
    
    Change-Id: I2b608b0c1dfe23509094ef808381a7e7c39c577d

diff --git a/sc/source/core/tool/formularesult.cxx 
b/sc/source/core/tool/formularesult.cxx
index 72944a0..f5cf8273 100644
--- a/sc/source/core/tool/formularesult.cxx
+++ b/sc/source/core/tool/formularesult.cxx
@@ -273,8 +273,9 @@ bool ScFormulaResult::IsValueNoError() const
         case formula::svEmptyCell:
         case formula::svHybridValueCell:
             return true;
+        default:
+            return false;
     }
-    return false;
 }
 
 bool ScFormulaResult::IsMultiline() const
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to