mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-12 13:00:32 +00:00
Fixed OSX clang compile error (from -Wtautological-compare)
This commit is contained in:
committed by
Baldur Karlsson
parent
a91c355062
commit
0d52eeed35
@@ -112,7 +112,7 @@ public:
|
||||
uint32_t row = index.row();
|
||||
int col = index.column();
|
||||
|
||||
if(col >= 0 && col < columnCount() && row >= 0 && row < numRows)
|
||||
if(col >= 0 && col < columnCount() && row < numRows)
|
||||
{
|
||||
if(col == 0)
|
||||
return row;
|
||||
|
||||
Reference in New Issue
Block a user