From ad1bc24381d332f39052c6bc00192fc5c14db11d Mon Sep 17 00:00:00 2001 From: Christopher Dykes Date: Wed, 22 Mar 2017 11:04:04 -0700 Subject: [PATCH] Fix the nested command line app test helper Summary: D4719112 changed the signature of the constructor but didn't update this callsite... Reviewed By: djwatson Differential Revision: D4754745 fbshipit-source-id: ae538a3ffb64cdc211f23220ea5e0d7bb7eff9b3 --- folly/experimental/test/NestedCommandLineAppTestHelper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/folly/experimental/test/NestedCommandLineAppTestHelper.cpp b/folly/experimental/test/NestedCommandLineAppTestHelper.cpp index abfcb7b6..da404613 100644 --- a/folly/experimental/test/NestedCommandLineAppTestHelper.cpp +++ b/folly/experimental/test/NestedCommandLineAppTestHelper.cpp @@ -41,7 +41,7 @@ void foo(const po::variables_map& options, } // namespace int main(int argc, char *argv[]) { - folly::NestedCommandLineApp app("", "0.1", init); + folly::NestedCommandLineApp app("", "0.1", "", "", init); app.addGFlags(); app.addCommand("foo", "[args...]", "Do some foo", "Does foo", foo) .add_options() -- 2.34.1