diff options
author | Dan Albert <danalbert@google.com> | 2014-11-11 19:31:26 -0800 |
---|---|---|
committer | Dan Albert <danalbert@google.com> | 2014-11-12 11:22:20 -0800 |
commit | ff1d8a6635fb6441615778a47e2881129574a5b1 (patch) | |
tree | d2f490ec6a546461eda288e4383a50796d68059c /libs/hwui/DisplayList.h | |
parent | 34acb4c8d4abe1c4f580b85ddc84b18b7e38e417 (diff) | |
download | frameworks_base-ff1d8a6635fb6441615778a47e2881129574a5b1.zip frameworks_base-ff1d8a6635fb6441615778a47e2881129574a5b1.tar.gz frameworks_base-ff1d8a6635fb6441615778a47e2881129574a5b1.tar.bz2 |
Move frameworks/base over to libc++.
Bug: 15193147
Change-Id: I96109d2d383f0c8a4aaa611f29fcf887afb3c69e
Diffstat (limited to 'libs/hwui/DisplayList.h')
-rw-r--r-- | libs/hwui/DisplayList.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hwui/DisplayList.h b/libs/hwui/DisplayList.h index 657632d..9eb8ae3 100644 --- a/libs/hwui/DisplayList.h +++ b/libs/hwui/DisplayList.h @@ -82,7 +82,7 @@ public: LinearAllocator * const mAllocator; SkPath* allocPathForFrame() { - mTempPaths.push_back(); + mTempPaths.push_back(SkPath()); return &mTempPaths.back(); } |