Use std:: prefix with std::forward() as well to satisfy Clang

This commit is contained in:
Kamil Śliwak
2023-03-06 18:20:49 +01:00
parent f341cfbfb6
commit 817a57b365
4 changed files with 5 additions and 4 deletions
+1 -1
View File
@@ -84,7 +84,7 @@ ASTPointer<T> ASTJsonImporter::createASTNode(Json::Value const& _node, Args&&...
auto n = make_shared<T>(
id,
createSourceLocation(_node),
forward<Args>(_args)...
std::forward<Args>(_args)...
);
return n;
}