Handle empty range insertion

This commit is contained in:
Bruno BELANYI 2024-08-23 22:13:34 +01:00
parent 5292c22e2c
commit c8183d99a6
2 changed files with 28 additions and 0 deletions

View file

@ -9,6 +9,8 @@ public:
interval_map(V const& init) : init_(init) {}
void assign(K const& begin, K const& end, V const& val) {
if (!(begin < end))
return;
// TODO: implement
}