- Joined
- Jan 1, 2010
- Messages
- 197
http://www.hiveworkshop.com/forums/world-editor-help-zone-98/player-group-leak-173958/
does this mean with all jass destructor functions, we have to use a space or it will leak? I was unaware of this, as this tutorial (http://world-editor-tutorials.thehelper.net/cat_usersubmit.php?view=27219) told me otherwise, and this is where I learned a lot of my warcraft memory leak cleaning. I gained a further understanding by studying C++ with how this works, but i didn't know of spaces being an issue or needed
ex
call RemoveLocation(udg_tmp_point)
vs
call RemoveLocation ( udg_tmp_point )
does this mean with all jass destructor functions, we have to use a space or it will leak? I was unaware of this, as this tutorial (http://world-editor-tutorials.thehelper.net/cat_usersubmit.php?view=27219) told me otherwise, and this is where I learned a lot of my warcraft memory leak cleaning. I gained a further understanding by studying C++ with how this works, but i didn't know of spaces being an issue or needed
ex
call RemoveLocation(udg_tmp_point)
vs
call RemoveLocation ( udg_tmp_point )