From 96b8cd8ee42a5065e4e23b911057cc445b44cb6e Mon Sep 17 00:00:00 2001 From: Benjamin Bannier Date: Fri, 4 Jul 2025 18:39:34 +0200 Subject: [PATCH] [Spicy] Remove declarations for unimplemented functions. --- src/spicy/spicyz/driver.h | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/src/spicy/spicyz/driver.h b/src/spicy/spicyz/driver.h index a0228a4e45..d9a29f8a26 100644 --- a/src/spicy/spicyz/driver.h +++ b/src/spicy/spicyz/driver.h @@ -133,32 +133,6 @@ public: /** Returns the glue compiler in use by the driver. */ const auto* glueCompiler() const { return _glue.get(); } - /** - * Parses some options command-line style *before* Zeek-side scripts have - * been processed. Most of the option processing happens in - * `parseOptionsPostScript()` instead, except for things that must be in - * place already before script processing. - * - * @param options space-separated string of command line argument to parse - * @return success if all argument could be parsed, or a suitable error message - */ - static hilti::Result parseOptionsPreScript(const std::string& options); - - /** - * Parses options command-line style after Zeek-side scripts have been - * fully processed. Most of the option processing happens here (vs. in - * `parseOptionsPreScript()`) except for things that must be in place - * already before script processing. - * - * @param options space-separated string of command line argument to parse - * @param driver_options instance of options to update per parsed arguments - * @param compiler_options instance of options to update per parsed arguments - * @return success if all argument could be parsed, or a suitable error message - */ - static hilti::Result parseOptionsPostScript(const std::string& options, - hilti::driver::Options* driver_options, - hilti::Options* compiler_options); - /** Prints a usage message for options supported by `parseOptions{Pre,Post}Script()`. */ static void usage(std::ostream& out);