From fd83b6b9920f5db848bcf7bb2d144d5772ad0f91 Mon Sep 17 00:00:00 2001 From: Deukhoofd Date: Mon, 24 Jun 2019 15:35:25 +0200 Subject: [PATCH] Implemented copy without state function for script Signed-off-by: Deukhoofd --- src/Script.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Script.hpp b/src/Script.hpp index d5a74fd..33a3998 100644 --- a/src/Script.hpp +++ b/src/Script.hpp @@ -23,7 +23,7 @@ namespace Porygon{ shared_ptr _returnType; explicit Script(const u16string&); - Script(shared_ptr boundScript, shared_ptr diagnostics); + Script(shared_ptr boundScript, shared_ptr diagnostics); void Parse(const u16string& script); public: shared_ptr Diagnostics;