Skip to content

Commit c8c4429

Browse files
committed
Implementing the doll sim. Still WIP.
1 parent 150ecab commit c8c4429

7 files changed

Lines changed: 267 additions & 215 deletions

core/net_utilities.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,13 +78,13 @@ const V &at(const std::map<K, V> &p_map, const K &p_key, const V &p_default) {
7878
}
7979
}
8080

81-
/// Insert or assign the `p_val` into the map at index `p_key`.
81+
/// Insert or update the `p_val` into the map at index `p_key`.
8282
template <class K, class V>
8383
void assign(std::map<K, V> &p_map, const K &p_key, const V &p_val) {
8484
p_map.insert_or_assign(p_key, p_val);
8585
}
8686

87-
/// Insert or assign the `p_val` into the map at index `p_key`.
87+
/// Insert or update the `p_val` into the map at index `p_key`.
8888
template <class K, class V>
8989
void assign(std::map<K, V> &p_map, const K &p_key, V &&p_val) {
9090
p_map.insert_or_assign(p_key, std::move(p_val));

0 commit comments

Comments
 (0)