Skip to content
Snippets Groups Projects
Commit 11ccb98a authored by Aleksander Einarsen's avatar Aleksander Einarsen
Browse files

Removed dependency parameter

parent 930b0781
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment