diff options
author | rubidium <rubidium@openttd.org> | 2009-02-03 22:42:42 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-02-03 22:42:42 +0000 |
commit | 1c30c8c801d2b4ecc6901069dcdfa8d0411aa1fd (patch) | |
tree | 4f0ff072e810fbda1bd6a01083ab7be1081bfdf3 /src/script/squirrel.hpp | |
parent | 101f55e65cd43daea211b26b5fe5666968a507f4 (diff) | |
download | openttd-1c30c8c801d2b4ecc6901069dcdfa8d0411aa1fd.tar.xz |
(svn r15330) -Fix [FS#2597]: leaking of Squirrel when using circular references (by enabling the GC).
Diffstat (limited to 'src/script/squirrel.hpp')
-rw-r--r-- | src/script/squirrel.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/script/squirrel.hpp b/src/script/squirrel.hpp index 39357bade..fc7472e96 100644 --- a/src/script/squirrel.hpp +++ b/src/script/squirrel.hpp @@ -101,6 +101,11 @@ public: */ bool Resume(int suspend = -1); + /** + * Tell the VM to do a garbage collection run. + */ + void CollectGarbage(); + void InsertResult(bool result); void InsertResult(int result); |