forked from mindspore-Ecosystem/mindspore
Optimization for map_data_.clear()
This commit is contained in:
parent
8300802b95
commit
7c1b44731e
|
@ -88,7 +88,9 @@ class OrderedMap {
|
|||
}
|
||||
|
||||
void clear() {
|
||||
map_data_.clear();
|
||||
if (!map_data_.empty()) {
|
||||
map_data_.clear();
|
||||
}
|
||||
sequential_data_.clear();
|
||||
}
|
||||
|
||||
|
|
|
@ -127,7 +127,9 @@ class OrderedSet {
|
|||
|
||||
// Clear the elements
|
||||
void clear() {
|
||||
mapped_data_.clear();
|
||||
if (!mapped_data_.empty()) {
|
||||
mapped_data_.clear();
|
||||
}
|
||||
ordered_data_.clear();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue