Skip to content
Snippets Groups Projects
Commit 27ee3576 authored by Ken Martin's avatar Ken Martin Committed by Kitware Robot
Browse files

Merge topic 'ospray_warning'


58a0720f fix cpp check warning for ambiguous precidence

Acked-by: default avatarKitware Robot <kwrobot@kitware.com>
Reviewed-by: default avatarSean McBride <sean@rogue-research.com>
Merge-request: !1404
parents ec2d97db 58a0720f
No related branches found
No related tags found
No related merge requests found
......@@ -416,7 +416,7 @@ int TestOSPRayRenderMesh(int argc, char* argv[])
{
bool ival = (i/10)%2==1;
bool jval = (j/10)%2==1;
unsigned char val = ival^jval?255:0;
unsigned char val = (ival^jval) ? 255 : 0;
aa->SetTuple3(idx, val, val, val);
if (j <= 3 || j >= maxj-3)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment