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

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

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

parents 7a4ecaaf f43b02c4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -661,7 +661,7 @@ private:
 */
class PooledInputEventFactory : public InputEventFactoryInterface {
public:
    PooledInputEventFactory(size_t maxPoolSize = 20);
    explicit PooledInputEventFactory(size_t maxPoolSize = 20);
    virtual ~PooledInputEventFactory();

    virtual KeyEvent* createKeyEvent();
+1 −1
Original line number Diff line number Diff line
@@ -196,7 +196,7 @@ private:
        };

        struct Property {
            inline Property(int32_t property = 0, int32_t metaState = 0) :
            inline explicit Property(int32_t property = 0, int32_t metaState = 0) :
                    property(property), metaState(metaState) { }

            int32_t property;
+1 −1
Original line number Diff line number Diff line
@@ -62,7 +62,7 @@ class DelayedTask : public Thread {
    int mDelayMillis;

public:
    DelayedTask(int delayMillis) : mDelayMillis(delayMillis) { }
    explicit DelayedTask(int delayMillis) : mDelayMillis(delayMillis) { }

protected:
    virtual ~DelayedTask() { }