Merge "Initialize ARect fields in default ctor" into lmp-mr1-dev

This commit is contained in:
Dan Stoza 2014-10-29 18:32:49 +00:00 committed by Android (Google) Code Review
commit 7b97351b68
1 changed files with 1 additions and 0 deletions

View File

@ -34,6 +34,7 @@ public:
// because we want the compiler generated versions
inline Rect() {
left = right = top = bottom = 0;
}
inline Rect(int32_t w, int32_t h) {