bombela/backward-cpp

Unqualified calls to std::move

LorenDB opened this issue · 1 comments

backward-cpp/backward.hpp

Lines 1640 to 1642 in 647eccd

r->handle = move(bfd_handle);
r->symtab = move(symtab);
r->dynamic_symtab = move(dynamic_symtab);

This causes a warning with Clang that unqualified calls to std::move are being performed. I haven't looked into the code much but it should probably be a matter of qualifying the calls with std:: (or a custom class/namespace if a custom move function is being used).

Yes, it is. At Line 414, there's a using std::move.