From 1a4d53cfbc57119d576a14666439e433babec35f Mon Sep 17 00:00:00 2001 From: Vaclav Barta Date: Mon, 7 Feb 2022 15:03:47 +0100 Subject: [PATCH] removed hardcoded file compilation options --- state/actions/compileCode.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/state/actions/compileCode.ts b/state/actions/compileCode.ts index 938f3fd..3203a6f 100644 --- a/state/actions/compileCode.ts +++ b/state/actions/compileCode.ts @@ -38,7 +38,6 @@ export const compileCode = async (activeId: number) => { { type: "c", name: state.files[activeId].name, - options: "-O0", src: state.files[activeId].content, }, ], @@ -87,4 +86,4 @@ export const compileCode = async (activeId: number) => { }); state.compiling = false; } -}; \ No newline at end of file +};