mirror of
https://github.com/VectorCamp/vectorscan.git
synced 2025-11-20 02:47:11 +03:00
Fix 'unqualified call to std::move' errors in clang 15+
This commit is contained in:
@@ -1780,7 +1780,7 @@ bool RoseBuildImpl::addOutfix(const NGHolder &h) {
|
||||
}
|
||||
|
||||
if (rdfa) {
|
||||
outfixes.emplace_back(OutfixInfo(move(rdfa)));
|
||||
outfixes.emplace_back(OutfixInfo(std::move(rdfa)));
|
||||
} else {
|
||||
outfixes.emplace_back(OutfixInfo(cloneHolder(h)));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user