Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 18f469b0 authored by Chih-hung Hsieh's avatar Chih-hung Hsieh Committed by Gerrit Code Review
Browse files

Merge "Fix/suppress tools google-explicit-constructor warnings"

parents c2b8bc0a 93561ab3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@ using namespace std;

struct Command
{
    Command(const string& prog);
    explicit Command(const string& prog);
    ~Command();

    void AddArg(const string& arg);
+1 −1
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@ using namespace std;
struct Error
{
    Error();
    explicit Error(const Error& that);
    Error(const Error& that);
    Error(const string& filename, int lineno, const char* message);

    string filename;