mirror of
https://github.com/zeldaret/tp
synced 2026-09-06 19:01:05 -04:00
fix functions not returning values (#2942)
* fix functions not returning values * implement functions that should return values
This commit is contained in:
@@ -4902,7 +4902,7 @@ int daB_TN_c::execute() {
|
||||
}
|
||||
|
||||
static int daB_TN_Execute(daB_TN_c* i_this) {
|
||||
i_this->execute();
|
||||
return i_this->execute();
|
||||
}
|
||||
|
||||
static int daB_TN_IsDelete(daB_TN_c* i_this) {
|
||||
@@ -4924,7 +4924,7 @@ int daB_TN_c::_delete() {
|
||||
}
|
||||
|
||||
static int daB_TN_Delete(daB_TN_c* i_this) {
|
||||
i_this->_delete();
|
||||
return i_this->_delete();
|
||||
}
|
||||
|
||||
int daB_TN_c::CreateHeap() {
|
||||
@@ -5024,7 +5024,7 @@ int daB_TN_c::CreateHeap() {
|
||||
}
|
||||
|
||||
static int useHeapInit(fopAc_ac_c* actor) {
|
||||
((daB_TN_c*)actor)->CreateHeap();
|
||||
return ((daB_TN_c*)actor)->CreateHeap();
|
||||
}
|
||||
|
||||
int daB_TN_c::create() {
|
||||
|
||||
Reference in New Issue
Block a user