From faecb78a6b11c780db47bc940ca7662899ab5d5e Mon Sep 17 00:00:00 2001 From: Chih-Hung Hsieh Date: Thu, 21 Jul 2016 11:23:06 -0700 Subject: Fix google-explicit-constructor warnings in frameworks/base * Add explicit keyword to conversion constructors. * Add NOLINT to implicit conversion constructors. Bug: 28341362 Test: build with clang-tidy Change-Id: Ie4d37072ab57d1662d18db4de1c8577247f43337 --- libs/hwui/CanvasProperty.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libs/hwui/CanvasProperty.h') diff --git a/libs/hwui/CanvasProperty.h b/libs/hwui/CanvasProperty.h index 6074394d0720..56671bba654b 100644 --- a/libs/hwui/CanvasProperty.h +++ b/libs/hwui/CanvasProperty.h @@ -28,7 +28,7 @@ namespace uirenderer { class CanvasPropertyPrimitive : public VirtualLightRefBase { PREVENT_COPY_AND_ASSIGN(CanvasPropertyPrimitive); public: - CanvasPropertyPrimitive(float initialValue) : value(initialValue) {} + explicit CanvasPropertyPrimitive(float initialValue) : value(initialValue) {} float value; }; @@ -36,7 +36,7 @@ public: class CanvasPropertyPaint : public VirtualLightRefBase { PREVENT_COPY_AND_ASSIGN(CanvasPropertyPaint); public: - CanvasPropertyPaint(const SkPaint& initialValue) : value(initialValue) {} + explicit CanvasPropertyPaint(const SkPaint& initialValue) : value(initialValue) {} SkPaint value; }; -- cgit v1.2.3-59-g8ed1b