CRUISE: Directly use assert.
This fixes an ASSERT macro redefinition when compiling the Symbian port. See bug #6622 "SYMBIAN: CRUISE: warning: `ASSERT' redefined".
This commit is contained in:
parent
06b01b8920
commit
9e4dfe556e
13 changed files with 33 additions and 36 deletions
|
@ -1608,7 +1608,7 @@ int16 Op_GetNodeX() {
|
|||
|
||||
int result = getNode(nodeInfo, node);
|
||||
|
||||
ASSERT(result == 0);
|
||||
assert(result == 0);
|
||||
|
||||
return nodeInfo[0];
|
||||
}
|
||||
|
@ -1620,7 +1620,7 @@ int16 Op_GetNodeY() {
|
|||
|
||||
int result = getNode(nodeInfo, node);
|
||||
|
||||
ASSERT(result == 0);
|
||||
assert(result == 0);
|
||||
|
||||
return nodeInfo[1];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue