diff options
author | 2019-01-09 15:09:06 -0800 | |
---|---|---|
committer | 2019-01-09 15:09:06 -0800 | |
commit | 739cf0d6592fca10f9c8307bdd2a895964aeaa7e (patch) | |
tree | 0e7e08ce5917991be23be11761b1f88451301925 /libs/hwui/Matrix.h | |
parent | 5ff66466e534e94eba366e04fd3137316f39333b (diff) | |
parent | 50991469e338c5e05f693fd55f39a8f372b93535 (diff) |
Merge "Fix/suppress hwui google-explicit-constructor warnings" am: dcfef16295
am: 50991469e3
Change-Id: Ic97c02ca4f0f903e3e9c861b4dd605ce0b7c1905
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 f0a3a959617d..9f3c0213c5b5 100644 --- a/libs/hwui/Matrix.h +++ b/libs/hwui/Matrix.h @@ -80,7 +80,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); } |