Kaydet (Commit) a20f9388 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

-Werror=misleading-indentation (GCC 6)

Change-Id: Ia633b859df94ede325469ec8a20e7383d2a178d4
üst e5d393cf
......@@ -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:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment