| 60 | } |
| 61 | |
| 62 | Encoding::CommandLineArguments::CommandLineArguments(int ac, |
| 63 | char const* const* av) |
| 64 | { |
| 65 | this->argv_.resize(ac + 1); |
| 66 | for (int i = 0; i < ac; i++) { |
| 67 | this->argv_[i] = strdup(av[i]); |
| 68 | } |
| 69 | this->argv_[ac] = nullptr; |
| 70 | } |
| 71 | |
| 72 | Encoding::CommandLineArguments::CommandLineArguments(int ac, |
| 73 | wchar_t const* const* av) |
nothing calls this directly
no test coverage detected