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

loplugin:expressionalwayszero (clang-cl)

Change-Id: If47b5bb3436ebdf799b74f7c0070f674ab52804e
üst a7d55901
......@@ -511,7 +511,7 @@ ErrCode call(
case SbxBOOL:
case SbxBYTE:
iRetVal =
proc_i(*reinterpret_cast<double *>(&stack[0*8]),
proc_i(*reinterpret_cast<double *>(&stack[0]),
*reinterpret_cast<double *>(&stack[1*8]),
*reinterpret_cast<double *>(&stack[2*8]),
*reinterpret_cast<double *>(&stack[3*8]),
......@@ -535,7 +535,7 @@ ErrCode call(
case SbxSINGLE:
case SbxDOUBLE:
dRetVal =
proc_d(*reinterpret_cast<double *>(&stack[0*8]),
proc_d(*reinterpret_cast<double *>(&stack[0]),
*reinterpret_cast<double *>(&stack[1*8]),
*reinterpret_cast<double *>(&stack[2*8]),
*reinterpret_cast<double *>(&stack[3*8]),
......
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