diff options
author | Chih-Hung Hsieh <chh@google.com> | 2019-01-09 15:34:01 -0800 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2019-01-09 15:34:01 -0800 |
commit | 2c9dad72bddfd16bc0d111d4f3e86337e6ee13a4 (patch) | |
tree | b0c1f46cdfd369cacec4ce2071aa760f347adf93 /libs/hwui/Matrix.h | |
parent | 3811a537a19b6a65147fd69434cd92ac457a7a3a (diff) | |
parent | 739cf0d6592fca10f9c8307bdd2a895964aeaa7e (diff) |
Merge "Fix/suppress hwui google-explicit-constructor warnings" am: dcfef16295 am: 50991469e3
am: 739cf0d659
Change-Id: Id2422881831785eb9a47fda38b3fe6ce95b843cb
Diffstat (limited to 'libs/hwui/Matrix.h')
-rw-r--r-- | libs/hwui/Matrix.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hwui/Matrix.h b/libs/hwui/Matrix.h index b33cfe2ec511..0c515a41689d 100644 --- a/libs/hwui/Matrix.h +++ b/libs/hwui/Matrix.h @@ -81,7 +81,7 @@ public: explicit Matrix4(const float* v) { load(v); } - Matrix4(const SkMatrix& v) { // NOLINT, implicit + Matrix4(const SkMatrix& v) { // NOLINT(google-explicit-constructor) load(v); } |