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

Commit ee1cd12a authored by Chih-hung Hsieh's avatar Chih-hung Hsieh Committed by android-build-merger
Browse files

Merge "Fix google-explicit-constructor warnings." am: caff47a0

am: 4a912c41

* commit '4a912c41':
  Fix google-explicit-constructor warnings.

Change-Id: If184ceba0bd601eadf3389d98a43dbfcf67f68ab
parents 067b2ca8 4a912c41
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -535,7 +535,7 @@ TEST_F(SurfaceTextureClientTest, DISABLED_SurfaceTextureSyncModeWaitRetire) {
            return false;
        }
    public:
        MyThread(const sp<GLConsumer>& mST)
        explicit MyThread(const sp<GLConsumer>& mST)
            : mST(mST), mBufferRetired(false) {
            ctx = eglGetCurrentContext();
            sur = eglGetCurrentSurface(EGL_DRAW);
+2 −2
Original line number Diff line number Diff line
@@ -437,7 +437,7 @@ TEST_F(SurfaceTextureGLTest, DisconnectStressTest) {

    class ProducerThread : public Thread {
    public:
        ProducerThread(const sp<ANativeWindow>& anw):
        explicit ProducerThread(const sp<ANativeWindow>& anw):
                mANW(anw) {
        }

@@ -620,7 +620,7 @@ TEST_F(SurfaceTextureGLTest, CroppedScalingMode) {
TEST_F(SurfaceTextureGLTest, AbandonUnblocksDequeueBuffer) {
    class ProducerThread : public Thread {
    public:
        ProducerThread(const sp<ANativeWindow>& anw):
        explicit ProducerThread(const sp<ANativeWindow>& anw):
                mANW(anw),
                mDequeueError(NO_ERROR) {
        }