aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimo Weingärtner <timo@tiwe.de>2013-07-15 23:59:22 +0200
committerTimo Weingärtner <timo@tiwe.de>2013-07-19 21:37:44 +0200
commit1b8707339da5b8d7fb976b49488b2752415850ae (patch)
tree3c87276b7bbb33546d8abe01110970037648dfdb
parentac2c716b4bdb463ba6dfd4a1b82595c3ea861d01 (diff)
downloadssh-agent-filter-1b8707339da5b8d7fb976b49488b2752415850ae.tar.gz
remove unneeded namespace qualification, ADL works here
-rw-r--r--ssh-agent-filter.C4
1 files changed, 2 insertions, 2 deletions
diff --git a/ssh-agent-filter.C b/ssh-agent-filter.C
index 4ebb204..615389a 100644
--- a/ssh-agent-filter.C
+++ b/ssh-agent-filter.C
@@ -152,8 +152,8 @@ void parse_cmdline (int const argc, char const * const * const argv) {
("version,V", "print version information")
;
po::variables_map config;
- po::store(po::parse_command_line(argc, argv, opts), config);
- po::notify(config);
+ store(parse_command_line(argc, argv, opts), config);
+ notify(config);
if (config.count("help")) {
std::cout << "Invocation: ssh-agent-filter [ OPTIONS ]" << std::endl;