From a6f56acc53ce29a360199f6422ef704e751c976b Mon Sep 17 00:00:00 2001 From: "pbos@webrtc.org" Date: Tue, 30 Jul 2013 12:50:59 +0000 Subject: [PATCH] Fix some chromium-style warnings in webrtc/tools/ BUG=163 R=phoglund@webrtc.org Review URL: https://webrtc-codereview.appspot.com/1908004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@4427 4adac7df-926f-26a2-2b94-8c16560cd09d --- webrtc/tools/simple_command_line_parser.cc | 3 +++ webrtc/tools/simple_command_line_parser.h | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/webrtc/tools/simple_command_line_parser.cc b/webrtc/tools/simple_command_line_parser.cc index d7757ed38e..d6a8c1b795 100644 --- a/webrtc/tools/simple_command_line_parser.cc +++ b/webrtc/tools/simple_command_line_parser.cc @@ -19,6 +19,9 @@ namespace test { using std::string; +CommandLineParser::CommandLineParser() {} +CommandLineParser::~CommandLineParser() {} + void CommandLineParser::Init(int argc, char** argv) { args_ = std::vector (argv + 1, argv + argc); } diff --git a/webrtc/tools/simple_command_line_parser.h b/webrtc/tools/simple_command_line_parser.h index f791fe9623..348e8c3db1 100644 --- a/webrtc/tools/simple_command_line_parser.h +++ b/webrtc/tools/simple_command_line_parser.h @@ -34,8 +34,8 @@ namespace test { class CommandLineParser { public: - CommandLineParser() {} - ~CommandLineParser() {} + CommandLineParser(); + ~CommandLineParser(); void Init(int argc, char** argv);