From f1bb53df8d5a0b0cf462fb92a5358bc126309876 Mon Sep 17 00:00:00 2001 From: mrb0nk500 Date: Wed, 8 Feb 2023 13:35:54 -0400 Subject: TObject: Rename `is_flag_0_clear_for_all_parents()` -> `all_parents_unqueued_for_destruction()` --- src/pso/TObject.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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; -- cgit v1.2.3-13-gbd6f