From b86a9a31e664cc4c5f1e7e3a55c0b131e5c1564b Mon Sep 17 00:00:00 2001 From: mrb0nk500 Date: Sun, 26 Feb 2023 19:13:27 -0400 Subject: TObject: Make `all_parents_unqueued_for_destruction()` return an int rather than a bool This is needed for matching other stuff. --- src/pso/TObject.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/pso') diff --git a/src/pso/TObject.cpp b/src/pso/TObject.cpp index 9c97146..d065518 100644 --- a/src/pso/TObject.cpp +++ b/src/pso/TObject.cpp @@ -41,7 +41,7 @@ void *TObject::alloc(size_t size) { } -bool TObject::all_parents_unqueued_for_destruction() { +int TObject::all_parents_unqueued_for_destruction() { for (TObject *parent = this; parent != NULL; parent = parent->m_up) { if (parent->get_flags(QUEUE_DESTRUCTION)) { return false; -- cgit v1.2.3-13-gbd6f