hyperscan icon indicating copy to clipboard operation
hyperscan copied to clipboard

Change 'move' to 'std::move' to avoid unqualified move call warnings on Clang 17+

Open novafacing opened this issue 2 years ago • 0 comments

Clang 17 has introduced an unconditional warning on unqualified calls to std::move as move (see the patch). Hyperscan has -Werror enabled on default compilations (which is great!) so this causes failure to compile on Clang 17+. This patch fixes all relevant calls to the qualified std::move instead of move.

novafacing avatar May 05 '23 21:05 novafacing