diff options
author | Dan Stoza <stoza@google.com> | 2014-10-29 22:58:47 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2014-10-29 22:58:49 +0000 |
commit | e42cba8feb2bbfe385f162a06e41e2c2c0f40c99 (patch) | |
tree | a4c4e780f80ae1b01f8c63ef663078a53751e25b /include | |
parent | cb8a9fcc56288378d05d80c55396db7981e3828d (diff) | |
parent | bccab86174f2cce787333aebb13ac5ef9a9247cc (diff) | |
download | frameworks_native-e42cba8feb2bbfe385f162a06e41e2c2c0f40c99.zip frameworks_native-e42cba8feb2bbfe385f162a06e41e2c2c0f40c99.tar.gz frameworks_native-e42cba8feb2bbfe385f162a06e41e2c2c0f40c99.tar.bz2 |
Merge "Initialize ARect fields in default ctor"
Diffstat (limited to 'include')
-rw-r--r-- | include/ui/Rect.h | 1 |
1 files changed, 1 insertions, 0 deletions
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 @@ public: // because we want the compiler generated versions inline Rect() { + left = right = top = bottom = 0; } inline Rect(int32_t w, int32_t h) { |