diff options
author | Timo Weingärtner <timo@tiwe.de> | 2013-07-15 23:59:22 +0200 |
---|---|---|
committer | Timo Weingärtner <timo@tiwe.de> | 2013-07-19 21:37:44 +0200 |
commit | 1b8707339da5b8d7fb976b49488b2752415850ae (patch) | |
tree | 3c87276b7bbb33546d8abe01110970037648dfdb /ssh-agent-filter.C | |
parent | ac2c716b4bdb463ba6dfd4a1b82595c3ea861d01 (diff) | |
download | ssh-agent-filter-1b8707339da5b8d7fb976b49488b2752415850ae.tar.gz |
remove unneeded namespace qualification, ADL works here
Diffstat (limited to 'ssh-agent-filter.C')
-rw-r--r-- | ssh-agent-filter.C | 4 |
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; |