Merge "Fix/suppress tools google-explicit-constructor warnings"
am: 18f469b088
Change-Id: Ib4632dfb6149108d7eb77c05d9f97258123b3493
This commit is contained in:
@@ -25,7 +25,7 @@ using namespace std;
|
|||||||
|
|
||||||
struct Command
|
struct Command
|
||||||
{
|
{
|
||||||
Command(const string& prog);
|
explicit Command(const string& prog);
|
||||||
~Command();
|
~Command();
|
||||||
|
|
||||||
void AddArg(const string& arg);
|
void AddArg(const string& arg);
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ using namespace std;
|
|||||||
struct Error
|
struct Error
|
||||||
{
|
{
|
||||||
Error();
|
Error();
|
||||||
explicit Error(const Error& that);
|
Error(const Error& that);
|
||||||
Error(const string& filename, int lineno, const char* message);
|
Error(const string& filename, int lineno, const char* message);
|
||||||
|
|
||||||
string filename;
|
string filename;
|
||||||
|
|||||||
Reference in New Issue
Block a user