d9c22396ea
This reverts commit 8482575d1f
.
There is weird thing happened if we tried to store raw "argv" on Linux.
18 lines
421 B
C++
18 lines
421 B
C++
// Copyright (c) 2013 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "atom/app/atom_main_args.h"
|
|
|
|
namespace atom {
|
|
|
|
void AtomCommandLine::Init(int argc,
|
|
const char* const* argv) {
|
|
for (int i = 0; i < argc; ++i) {
|
|
argv_.push_back(argv[i]);
|
|
}
|
|
}
|
|
|
|
std::vector<std::string> AtomCommandLine::argv_;
|
|
|
|
} // namespace atom
|