From: Christopher Dykes Date: Wed, 22 Mar 2017 18:04:04 +0000 (-0700) Subject: Fix the nested command line app test helper X-Git-Tag: v2017.03.27.00~14 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=ad1bc24381d332f39052c6bc00192fc5c14db11d;p=folly.git 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 --- 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()