diff options
author | Andreas Huber <andih@google.com> | 2012-02-29 15:47:17 -0800 |
---|---|---|
committer | Alex Ray <aray@google.com> | 2013-07-30 13:56:59 -0700 |
commit | f03fd0a87057558110019e80676279ef69859804 (patch) | |
tree | 8a6e02f3457e61e38051d216c5475bae349cfa68 /include/utils | |
parent | 24e57d5660a1f5daf37e36d449d31a342fbcb9cf (diff) | |
download | system_core-f03fd0a87057558110019e80676279ef69859804.zip system_core-f03fd0a87057558110019e80676279ef69859804.tar.gz system_core-f03fd0a87057558110019e80676279ef69859804.tar.bz2 |
Instead of hardcoding OMX component names in our code, support
a config file instead.
Change-Id: I5835903ab9f1c4a22ccc605ca99ed966767adf57
Diffstat (limited to 'include/utils')
-rw-r--r-- | include/utils/Vector.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/utils/Vector.h b/include/utils/Vector.h index b908e2a..5b5296b 100644 --- a/include/utils/Vector.h +++ b/include/utils/Vector.h @@ -186,8 +186,8 @@ public: inline const_iterator end() const { return array() + size(); } inline void reserve(size_t n) { setCapacity(n); } inline bool empty() const{ return isEmpty(); } - inline void push_back(const TYPE& item) { insertAt(item, size()); } - inline void push_front(const TYPE& item) { insertAt(item, 0); } + inline void push_back(const TYPE& item) { insertAt(item, size(), 1); } + inline void push_front(const TYPE& item) { insertAt(item, 0, 1); } inline iterator erase(iterator pos) { return begin() + removeItemsAt(pos-array()); } |