summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormrb0nk500 <b0nk@b0nk.xyz>2023-02-08 13:35:54 -0400
committermrb0nk500 <b0nk@b0nk.xyz>2023-02-08 13:38:01 -0400
commitf1bb53df8d5a0b0cf462fb92a5358bc126309876 (patch)
treea2eaa67ba5b7375aae08fa4aa590fb9ad93a2a61 /src
parent1ae14453aab790a9614eaaff17647269fe6877f4 (diff)
TObject: Rename `is_flag_0_clear_for_all_parents()` ->
`all_parents_unqueued_for_destruction()`
Diffstat (limited to 'src')
-rw-r--r--src/pso/TObject.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pso/TObject.cpp b/src/pso/TObject.cpp
index d6cfcb0..1d87c4b 100644
--- a/src/pso/TObject.cpp
+++ b/src/pso/TObject.cpp
@@ -40,7 +40,7 @@ void *TObject::alloc(unsigned long size) {
}
-bool TObject::is_flag_0_clear_for_all_parents() {
+bool TObject::all_parents_unqueued_for_destruction() {
for (TObject *parent = this; parent != NULL; parent = parent->up) {
if (parent->get_flags(QUEUE_DESTRUCTION)) {
return false;