diff options
Diffstat (limited to 'svg-flatten/src/util.h')
-rw-r--r-- | svg-flatten/src/util.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/svg-flatten/src/util.h b/svg-flatten/src/util.h index f3fbe32..bed915b 100644 --- a/svg-flatten/src/util.h +++ b/svg-flatten/src/util.h @@ -18,7 +18,10 @@ #pragma once +#include <vector> +#include <string> + namespace gerbolyze { -int run_cargo_command(const char *cmd_name, const char *cmdline[], const char *envvar); +int run_cargo_command(const char *cmd_name, std::vector<std::string> &cmdline, const char *envvar); } |