diff options
author | Dan Stoza <stoza@google.com> | 2014-10-29 23:04:05 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2014-10-29 23:04:05 +0000 |
commit | f3929d6611bb8278e561fdd4b05a21915ac9de76 (patch) | |
tree | 56aa241f4f2567025a9267528e846bee20378668 /include | |
parent | 5cf92d4a85efe7bcff4d0818d8d88afa252f7cc7 (diff) | |
parent | e42cba8feb2bbfe385f162a06e41e2c2c0f40c99 (diff) | |
download | frameworks_native-f3929d6611bb8278e561fdd4b05a21915ac9de76.zip frameworks_native-f3929d6611bb8278e561fdd4b05a21915ac9de76.tar.gz frameworks_native-f3929d6611bb8278e561fdd4b05a21915ac9de76.tar.bz2 |
am e42cba8f: Merge "Initialize ARect fields in default ctor"
* commit 'e42cba8feb2bbfe385f162a06e41e2c2c0f40c99':
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) { |