summaryrefslogtreecommitdiff
path: root/src/pso
diff options
context:
space:
mode:
Diffstat (limited to 'src/pso')
-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 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;