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

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

Merge "Fix google-explicit-constructor warnings."

parents d2afbe45 1cc82ce9
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; }
};