mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-08 23:23:25 +00:00
frontend: cleanup to use more ID::*, more dict<> instead of map<>
This commit is contained in:
parent
584780d776
commit
22bf22fab4
7 changed files with 34 additions and 31 deletions
|
@ -48,7 +48,7 @@ static void error_on_dpi_function(AST::AstNode *node)
|
|||
error_on_dpi_function(child);
|
||||
}
|
||||
|
||||
static void add_package_types(std::map<std::string, AST::AstNode *> &user_types, std::vector<AST::AstNode *> &package_list)
|
||||
static void add_package_types(dict<std::string, AST::AstNode *> &user_types, std::vector<AST::AstNode *> &package_list)
|
||||
{
|
||||
// prime the parser's user type lookup table with the package qualified names
|
||||
// of typedefed names in the packages seen so far.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue