am d23b34b3: am f3929d66: am e42cba8f: Merge "Initialize ARect fields in default ctor"

* commit 'd23b34b3ac591d2c7bfb58bfc3ab673e775df496':
  Initialize ARect fields in default ctor
This commit is contained in:
Dan Stoza 2014-10-29 23:13:10 +00:00 committed by Android Git Automerger
commit 298e6f92a4
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) {