replace piForeach* to for(:)
another c++11 try ...
This commit is contained in:
@@ -226,6 +226,10 @@ public:
|
||||
pim_content.swap(other.pim_content);
|
||||
pim_index.swap(other.pim_index);
|
||||
}
|
||||
void swap(PIMap<Key, T> && other) {
|
||||
pim_content.swap(other.pim_content);
|
||||
pim_index.swap(other.pim_index);
|
||||
}
|
||||
|
||||
PIMap<Key, T> & insert(const Key & key, const T & value) {
|
||||
bool f(false);
|
||||
|
||||
Reference in New Issue
Block a user