From 7cc100e3d7019c4e113238c37388dc11ce047480 Mon Sep 17 00:00:00 2001 From: Jason Turner Date: Thu, 6 Oct 2016 09:36:43 -0600 Subject: [PATCH] Make ChaiScript constructor public... --- include/chaiscript/chaiscript.hpp | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/include/chaiscript/chaiscript.hpp b/include/chaiscript/chaiscript.hpp index 2df9535..076a2af 100644 --- a/include/chaiscript/chaiscript.hpp +++ b/include/chaiscript/chaiscript.hpp @@ -825,14 +825,15 @@ namespace chaiscript { class ChaiScript : public ChaiScript_Basic { - ChaiScript(std::vector t_modulepaths = {}, - std::vector t_usepaths = {}) - : ChaiScript_Basic( - chaiscript::Std_Lib::library(), - std::make_unique>(), - t_modulepaths, t_usepaths) - { - } + public: + ChaiScript(std::vector t_modulepaths = {}, + std::vector t_usepaths = {}) + : ChaiScript_Basic( + chaiscript::Std_Lib::library(), + std::make_unique>(), + t_modulepaths, t_usepaths) + { + } }; }