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
This commit is contained in:
parent
096515b070
commit
a6f56acc53
@ -19,6 +19,9 @@ namespace test {
|
||||
|
||||
using std::string;
|
||||
|
||||
CommandLineParser::CommandLineParser() {}
|
||||
CommandLineParser::~CommandLineParser() {}
|
||||
|
||||
void CommandLineParser::Init(int argc, char** argv) {
|
||||
args_ = std::vector<std::string> (argv + 1, argv + argc);
|
||||
}
|
||||
|
||||
@ -34,8 +34,8 @@ namespace test {
|
||||
|
||||
class CommandLineParser {
|
||||
public:
|
||||
CommandLineParser() {}
|
||||
~CommandLineParser() {}
|
||||
CommandLineParser();
|
||||
~CommandLineParser();
|
||||
|
||||
void Init(int argc, char** argv);
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user