mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Use std:: prefix with std::forward() as well to satisfy Clang
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user