From 2a2c2e97a9be9fc4db30842ad61e46a1fd7cd125 Mon Sep 17 00:00:00 2001 From: Nicolas Noble Date: Mon, 11 Aug 2014 11:53:25 -0700 Subject: Bugs fixing in Lua - we really can't afford to have destructors throwing exceptions, and also making sure we're using the proper types for Handles. --- includes/BigInt.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'includes/BigInt.h') diff --git a/includes/BigInt.h b/includes/BigInt.h index 3a31b2e..bc956bd 100644 --- a/includes/BigInt.h +++ b/includes/BigInt.h @@ -118,6 +118,8 @@ class BigInt { String toString(int radix = 10) const; char * makeString(int radix = 10) const; + void cleanup() { } + private: void * m_bi = NULL; }; -- cgit v1.2.3