summaryrefslogtreecommitdiff
path: root/test/libapt/commandline_test.cc
diff options
context:
space:
mode:
authorDavid Kalnischkies <david@kalnischkies.de>2016-09-01 08:49:22 +0200
committerDavid Kalnischkies <david@kalnischkies.de>2016-09-01 16:13:32 +0200
commitd8a57c1953b876917a9deb098d1ef3d2b093f3dc (patch)
tree32ec69a502c7ad04b996229ce1ef614047fdf151 /test/libapt/commandline_test.cc
parent644478e8db56f305601c3628a74e53de048b28c8 (diff)
tests: silence -Wmissing-declarations
Gbp-Dch: Ignore Reported-By: gcc -Wmissing-declarations
Diffstat (limited to 'test/libapt/commandline_test.cc')
-rw-r--r--test/libapt/commandline_test.cc6
1 files changed, 1 insertions, 5 deletions
diff --git a/test/libapt/commandline_test.cc b/test/libapt/commandline_test.cc
index 7783c47a4..97725c854 100644
--- a/test/libapt/commandline_test.cc
+++ b/test/libapt/commandline_test.cc
@@ -17,10 +17,6 @@ class CLT: public CommandLine {
}
};
-bool ShowHelp(CommandLine &) {return false;}
-std::vector<aptDispatchWithHelp> GetCommands() {return {};}
-
-
TEST(CommandLineTest,SaveInConfig)
{
#define APT_EXPECT_CMD(x, ...) { const char * const argv[] = { __VA_ARGS__ }; EXPECT_EQ(x, CLT::AsString(argv, sizeof(argv)/sizeof(argv[0]))); }
@@ -166,7 +162,7 @@ TEST(CommandLineTest, BoolParsing)
}
-bool DoVoid(CommandLine &) { return false; }
+static bool DoVoid(CommandLine &) { return false; }
TEST(CommandLineTest,GetCommand)
{