diff options
| author | Chris Wailes <chriswailes@google.com> | 2014-07-28 16:54:38 -0700 |
|---|---|---|
| committer | Chris Wailes <chriswailes@google.com> | 2014-08-18 15:12:32 -0700 |
| commit | 93d6bc872b7d9fba63abfa7513d56b38d9c3d371 (patch) | |
| tree | 0a99fbd58c3254f82ffa1600f653aeac81c55d03 /rsFileA3D.cpp | |
| parent | 70d4971878444fe7cf4263998b0c3f46e2b6c71f (diff) | |
| download | android_frameworks_rs-93d6bc872b7d9fba63abfa7513d56b38d9c3d371.tar.gz android_frameworks_rs-93d6bc872b7d9fba63abfa7513d56b38d9c3d371.tar.bz2 android_frameworks_rs-93d6bc872b7d9fba63abfa7513d56b38d9c3d371.zip | |
Replaced android::Vector with std::vector.
Change-Id: I4c6abd964dc4b1412ec2e592fc8e835fecfe53f6
Diffstat (limited to 'rsFileA3D.cpp')
| -rw-r--r-- | rsFileA3D.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rsFileA3D.cpp b/rsFileA3D.cpp index a589033d..ef5730f6 100644 --- a/rsFileA3D.cpp +++ b/rsFileA3D.cpp @@ -87,7 +87,7 @@ void FileA3D::parseHeader(IStream *headerStream) { entry->mLength = headerStream->loadU32(); } entry->mRsObj = NULL; - mIndex.push(entry); + mIndex.push_back(entry); } } @@ -379,7 +379,7 @@ void FileA3D::appendToFile(Context *con, ObjectBase *obj) { indexEntry->mType = obj->getClassId(); indexEntry->mOffset = mWriteStream->getPos(); indexEntry->mRsObj = obj; - mWriteIndex.push(indexEntry); + mWriteIndex.push_back(indexEntry); obj->serialize(con, mWriteStream); indexEntry->mLength = mWriteStream->getPos() - indexEntry->mOffset; mWriteStream->align(4); |
