diff --git a/modules/compiler/go-compiler/go_compiler.go b/modules/compiler/go-compiler/go_compiler.go index 595dc48a12dbc136c49e1cfd15ab95579326b5dc..39cf2f1da6bd573b522baed3099231367edf2200 100644 --- a/modules/compiler/go-compiler/go_compiler.go +++ b/modules/compiler/go-compiler/go_compiler.go @@ -9,7 +9,7 @@ import ( // // CompileStringToGo tries to compile a string of go code to a go executable, and returns the compiler output and an error. // The function does not produce any executables, since they are deleted after the function ends. -func CompileStringToGo(code string, filename string, _ ...string) (string, error) { +func CompileStringToGo(code string, filename string) (string, error) { // Get the platform OS := runtime.GOOS