diff options
author | Chih-Hung Hsieh <chh@google.com> | 2016-04-27 11:29:23 -0700 |
---|---|---|
committer | Chih-Hung Hsieh <chh@google.com> | 2016-04-27 11:38:12 -0700 |
commit | c6baf563ba6aa207a48317c177b29f1d2b70cf3d (patch) | |
tree | 38cb5ab3e8ce0ebe0bcdace644378ad037adb37f /libs/hwui/renderthread/RenderThread.cpp | |
parent | cd4f7e12037acd16f500dc9a4be98e51fe58a11b (diff) |
Fix google-explicit-constructor warnings.
Bug: 28341362
Change-Id: Ibdd6a210bb7ff228e3624cc319169f77aca3b51e
Diffstat (limited to 'libs/hwui/renderthread/RenderThread.cpp')
-rw-r--r-- | libs/hwui/renderthread/RenderThread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hwui/renderthread/RenderThread.cpp b/libs/hwui/renderthread/RenderThread.cpp index 64075f1c346a..8301107eb8d1 100644 --- a/libs/hwui/renderthread/RenderThread.cpp +++ b/libs/hwui/renderthread/RenderThread.cpp @@ -129,7 +129,7 @@ class DispatchFrameCallbacks : public RenderTask { private: RenderThread* mRenderThread; public: - DispatchFrameCallbacks(RenderThread* rt) : mRenderThread(rt) {} + explicit DispatchFrameCallbacks(RenderThread* rt) : mRenderThread(rt) {} virtual void run() override { mRenderThread->dispatchFrameCallbacks(); |