Decorate rare !data.inside_tree condition with unlikely
This commit is contained in:
parent
53e9d90850
commit
6c86268fdd
1 changed files with 1 additions and 1 deletions
|
@ -596,7 +596,7 @@ public:
|
||||||
// No thread processing.
|
// No thread processing.
|
||||||
// Only accessible if node is outside the scene tree
|
// Only accessible if node is outside the scene tree
|
||||||
// or access will happen from a node-safe thread.
|
// or access will happen from a node-safe thread.
|
||||||
return is_current_thread_safe_for_nodes() || !data.inside_tree;
|
return is_current_thread_safe_for_nodes() || unlikely(!data.inside_tree);
|
||||||
} else {
|
} else {
|
||||||
// Thread processing.
|
// Thread processing.
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in a new issue