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

Commit 1cc82ce9 authored by Chih-Hung Hsieh's avatar Chih-Hung Hsieh
Browse files

Fix google-explicit-constructor warnings.

Bug: 28341362
Change-Id: I2cf746fd07addc6e6c22e98e2a5bb8a8ce47c885
parent d61bfb9a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -49,7 +49,7 @@ TEST(logcat, sorted_order) {
            }
        }

        timestamp(const char *buffer)
        explicit timestamp(const char *buffer)
        {
            init(buffer);
        }
+1 −1
Original line number Diff line number Diff line
@@ -380,7 +380,7 @@ public:
            tid(tid),
            padding(0) {
    }
    LogBufferElementKey(uint64_t key):value(key) { }
    explicit LogBufferElementKey(uint64_t key):value(key) { }

    uint64_t getKey() { return value; }
};