mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-07-11 22:03:01 -06:00
Core: Fixed to compile with GCC
git-svn-id: svn://ultimatepp.org/upp/trunk@10000 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
d8b682117f
commit
eaf29d806b
1 changed files with 1 additions and 1 deletions
|
|
@ -201,7 +201,7 @@ public:
|
|||
VectorMap() {}
|
||||
VectorMap(std::initializer_list<std::pair<K, T>> init) : B::AMap(init) {}
|
||||
|
||||
VectorMap& operator()(const K& k, const T& v) { Add(k, v); return *this; }
|
||||
VectorMap& operator()(const K& k, const T& v) { B::Add(k, v); return *this; }
|
||||
|
||||
friend void Swap(VectorMap& a, VectorMap& b) { a.B::Swap(b); }
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue