diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-01-13 17:20:28 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-01-13 17:20:28 +0100 |
commit | a20f9388f1487c68d707084e0213f17d899f531c (patch) | |
tree | 72834c7a15898096aa67eaf12810ca8d27e7e685 /basic | |
parent | e5d393cf0edc5d871cfe1aea6acede482eecec84 (diff) |
-Werror=misleading-indentation (GCC 6)
Change-Id: Ia633b859df94ede325469ec8a20e7383d2a178d4
Diffstat (limited to 'basic')
-rw-r--r-- | basic/source/sbx/sbxvalue.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/basic/source/sbx/sbxvalue.cxx b/basic/source/sbx/sbxvalue.cxx index e8816a7c075b..692109e27d35 100644 --- a/basic/source/sbx/sbxvalue.cxx +++ b/basic/source/sbx/sbxvalue.cxx @@ -1196,7 +1196,8 @@ Lbl_OpIsDouble: aL.nDouble *= aR.nDouble; break; case SbxDIV: if( !aR.nDouble ) SetError( ERRCODE_SBX_ZERODIV ); - else aL.nDouble /= aR.nDouble; break; + else aL.nDouble /= aR.nDouble; + break; case SbxPLUS: aL.nDouble += aR.nDouble; break; case SbxMINUS: |