Kaydet (Commit) 6b5e4c1f authored tarafından Noel Grandin's avatar Noel Grandin

fix build "error: declaration of size shadows a member of 'this'"

after my commit 2aacf6c2
"sc: boost::ptr_vector->std::vector"

Change-Id: I7195b91a61405f16ddcc698ce1e8205e6d20c39e
üst f6ef7e33
......@@ -83,7 +83,7 @@ public:
iterator begin();
const_iterator begin() const;
void clear();
void reserve(size_t size) { maData.reserve(size); }
void reserve(size_t nSize) { maData.reserve(nSize); }
size_t size() const;
void push_back(const ScUserListData& r) { maData.push_back(r); }
void erase(iterator itr);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment