diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2013-08-12 17:55:04 +0200 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2013-08-12 17:55:04 +0200 |
commit | cff5910982e3201d4b79178b8204d5dc5b95f166 (patch) | |
tree | d206a7d5ed676fc230fdafb3d52bb7d86072c457 /src/Dalos-cli.cc | |
parent | 84f60bbd5db549b655e12a49ec8557e18c1b8d15 (diff) |
Adding BigInt support and test to Dalos.
Diffstat (limited to 'src/Dalos-cli.cc')
-rw-r--r-- | src/Dalos-cli.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Dalos-cli.cc b/src/Dalos-cli.cc index 887d7d1..b331f15 100644 --- a/src/Dalos-cli.cc +++ b/src/Dalos-cli.cc @@ -4,6 +4,7 @@ #include <LuaTask.h> #include <Input.h> #include <BStdIO.h> +#include <LuaBigInt.h> #include <LuaHandle.h> #include "BReadline.h" #include "LuaLoad.h" @@ -43,6 +44,7 @@ namespace { class DalosInit : public LuaExecCell { virtual void run(Lua & L) override { registerLuaLoad(L); + registerLuaBigInt(L); registerLuaHandle(L); } }; |