mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-13 21:30:09 +00:00
silence warning
This commit is contained in:
parent
34f9dd09c9
commit
2bb53b311d
@ -98,10 +98,10 @@ Node* Tree::SearchJoint(Node* node, int index)
|
||||
if (node->seqNumJoint == index) {
|
||||
return node;
|
||||
} else {
|
||||
if (ret = SearchJoint(node->left, index)) {
|
||||
if ((ret = SearchJoint(node->left, index))) {
|
||||
return ret;
|
||||
}
|
||||
if (ret = SearchJoint(node->right, index)) {
|
||||
if ((ret = SearchJoint(node->right, index))) {
|
||||
return ret;
|
||||
}
|
||||
return NULL;
|
||||
@ -127,10 +127,10 @@ Node* Tree::SearchEffector(Node* node, int index)
|
||||
if (node->seqNumEffector == index) {
|
||||
return node;
|
||||
} else {
|
||||
if (ret = SearchEffector(node->left, index)) {
|
||||
if ((ret = SearchEffector(node->left, index))) {
|
||||
return ret;
|
||||
}
|
||||
if (ret = SearchEffector(node->right, index)) {
|
||||
if ((ret = SearchEffector(node->right, index))) {
|
||||
return ret;
|
||||
}
|
||||
return NULL;
|
||||
@ -214,4 +214,4 @@ void Tree::UnFreezeTree(Node* node)
|
||||
void Tree::UnFreeze(void)
|
||||
{
|
||||
UnFreezeTree(root);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user