diff options
-rw-r--r-- | include/pso/TObject.h | 2 | ||||
-rw-r--r-- | src/pso/TObject.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/pso/TObject.h b/include/pso/TObject.h index 851e4e2..87d2bed 100644 --- a/include/pso/TObject.h +++ b/include/pso/TObject.h @@ -173,7 +173,7 @@ public: void empty_func2(); void log(const char *str); int get_node_count(); - bool all_parents_unqueued_for_destruction(); + int all_parents_unqueued_for_destruction(); static void *alloc(size_t size); static void free(void *ptr); bool toggle_flag_9_if_flag_10_is_clear(); 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; |