Making sure that the library can compile without warnings even when crazy pedantic flags are set (#238)

Makes some fixes to satisfy various strict warnings.
This commit is contained in:
Daniel Lemire
2020-10-06 17:06:33 +11:00
committed by GitHub
parent 3ef9fddc7b
commit 12e496da3d
3 changed files with 46 additions and 34 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ class Argv {
private:
std::vector<std::unique_ptr<char[]>> m_args;
std::vector<std::unique_ptr<char[]>> m_args{};
std::unique_ptr<const char*[]> m_argv;
int m_argc;
};