diff options
-rw-r--r-- | bpkg/utility | 3 | ||||
-rw-r--r-- | bpkg/utility.cxx | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/bpkg/utility b/bpkg/utility index b29d066..e1eeb61 100644 --- a/bpkg/utility +++ b/bpkg/utility @@ -13,7 +13,6 @@ #include <butl/filesystem> #include <bpkg/types> -#include <bpkg/common-options> namespace bpkg { @@ -69,6 +68,8 @@ namespace bpkg // Run build2, mapping verbosity levels. If quiet is true, then // run build2 quiet if our verbosity level is 1. // + class common_options; + void run_b (const common_options&, const string& buildspec, diff --git a/bpkg/utility.cxx b/bpkg/utility.cxx index 099b56d..e88d31e 100644 --- a/bpkg/utility.cxx +++ b/bpkg/utility.cxx @@ -12,6 +12,8 @@ #include <bpkg/types> #include <bpkg/diagnostics> +#include <bpkg/common-options> + using namespace std; using namespace butl; |