1
0
mirror of synced 2026-04-03 13:24:03 +00:00

dpicall.cc: Fix sans-plugin function call

This commit is contained in:
Krystine Sherwin
2025-06-25 11:37:40 +12:00
committed by Emil J. Tywoniak
parent f4016d96cc
commit 0f7080ebf8

View File

@@ -153,7 +153,7 @@ YOSYS_NAMESPACE_END
YOSYS_NAMESPACE_BEGIN
AST::AstNode *AST::dpi_call(AstSrcLocType loc, const std::string&, const std::string &fname, const std::vector<std::string>&, const std::vector<AstNode*>&)
std::unique_ptr<AST::AstNode> AST::dpi_call(AstSrcLocType, const std::string&, const std::string &fname, const std::vector<std::string>&, const std::vector<std::unique_ptr<AST::AstNode>>&)
{
log_error("Can't call DPI function `%s': this version of yosys is built without plugin support\n", fname.c_str());
}