adt,test: add missing std before move

master
Robert Falkenberg 2 years ago committed by Justin Tallon
parent 3bd8ad9bd1
commit 3695d607a8

@ -18,7 +18,7 @@ namespace srsran {
struct C { struct C {
C() : val_ptr(new int(5)) { count++; } C() : val_ptr(new int(5)) { count++; }
~C() { count--; } ~C() { count--; }
C(C&& other) : val_ptr(move(other.val_ptr)) { count++; } C(C&& other) : val_ptr(std::move(other.val_ptr)) { count++; }
C& operator=(C&&) = default; C& operator=(C&&) = default;
std::unique_ptr<int> val_ptr; std::unique_ptr<int> val_ptr;

Loading…
Cancel
Save