hyperscan
hyperscan copied to clipboard
Change 'move' to 'std::move' to avoid unqualified move call warnings on Clang 17+
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.