diff options
| author | 2024-08-25 17:17:11 +0100 | |
|---|---|---|
| committer | 2024-08-25 17:17:11 +0100 | |
| commit | 5dd92c538806c13cc26a68ee23756e3f92f04200 (patch) | |
| tree | 032fe63901c2ef31f705fdbcdb0a287c3b932f1d /modules/ircv3_batch.cpp | |
| parent | Merge branch 'insp4' into master. (diff) | |
Replace stalgo::erase with C++20 std::erase.
Diffstat (limited to 'modules/ircv3_batch.cpp')
| -rw-r--r-- | modules/ircv3_batch.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ircv3_batch.cpp b/modules/ircv3_batch.cpp index b3be91fcb..76e4074e7 100644 --- a/modules/ircv3_batch.cpp +++ b/modules/ircv3_batch.cpp @@ -175,7 +175,7 @@ public: } // erase() not swaperase because the reftag generation logic depends on the order of the elements - stdalgo::erase(active_batches, &batch); + std::erase(active_batches, &batch); delete batch.batchinfo; batch.batchinfo = nullptr; } |
