commit | 93d6bc872b7d9fba63abfa7513d56b38d9c3d371 | [log] [tgz] |
---|---|---|
author | Chris Wailes <chriswailes@google.com> | Mon Jul 28 16:54:38 2014 -0700 |
committer | Chris Wailes <chriswailes@google.com> | Mon Aug 18 15:12:32 2014 -0700 |
tree | 0a99fbd58c3254f82ffa1600f653aeac81c55d03 | |
parent | 70d4971878444fe7cf4263998b0c3f46e2b6c71f [diff] [blame] |
Replaced android::Vector with std::vector. Change-Id: I4c6abd964dc4b1412ec2e592fc8e835fecfe53f6
diff --git a/rsFileA3D.h b/rsFileA3D.h index 8bf36b9..0c8b3d6 100644 --- a/rsFileA3D.h +++ b/rsFileA3D.h
@@ -88,15 +88,13 @@ Asset *mAsset; OStream *mWriteStream; - Vector<A3DIndexEntry*> mWriteIndex; + std::vector<A3DIndexEntry*> mWriteIndex; IStream *mReadStream; - Vector<A3DIndexEntry*> mIndex; + std::vector<A3DIndexEntry*> mIndex; }; } } #endif //ANDROID_RS_FILE_A3D_H - -