commit | 7b97351b68e96ea67380140266abb897fe1be57d | [log] [tgz] |
---|---|---|
author | Dan Stoza <stoza@google.com> | Wed Oct 29 18:32:49 2014 +0000 |
committer | Android (Google) Code Review <android-gerrit@google.com> | Wed Oct 29 18:32:49 2014 +0000 |
tree | fc1de8e2f60bbcd25c7efc4546a5a7dc59f1503c | |
parent | 1834f8ea975e9a882b44dc479320fe02e306e630 [diff] | |
parent | b2e19208ddf3274e7cc044ca1abfcd02787a7cf1 [diff] |
Merge "Initialize ARect fields in default ctor" into lmp-mr1-dev
diff --git a/include/ui/Rect.h b/include/ui/Rect.h index 6cf64eb..31e28d2 100644 --- a/include/ui/Rect.h +++ b/include/ui/Rect.h
@@ -34,6 +34,7 @@ // because we want the compiler generated versions inline Rect() { + left = right = top = bottom = 0; } inline Rect(int32_t w, int32_t h) {