Skip to content

Commit

Permalink
Fix: Including std::exchange
Browse files Browse the repository at this point in the history
  • Loading branch information
ashvardanian committed Jan 31, 2023
1 parent e8174a3 commit a6bfa27
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions include/ucset/consistent_avl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
#include <algorithm> // `std::max`
#include <memory> // `std::allocator`
#include <optional> // `std::optional`
#include <mutex> // `std::unique_lock`
#include <ostream> // `std::endl`
#include <mutex> // `std::unique_lock`
#include <ostream> // `std::endl`
#include <utility> // `std::exchange`

#include "status.hpp"

Expand Down

0 comments on commit a6bfa27

Please sign in to comment.