diff options
Diffstat (limited to 'generic')
-rw-r--r-- | generic/main.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/main.cc b/generic/main.cc index 784178c6..2352b246 100644 --- a/generic/main.cc +++ b/generic/main.cc @@ -32,7 +32,7 @@ class GenericCommandHandler : public CommandHandler public: GenericCommandHandler(int argc, char **argv); virtual ~GenericCommandHandler(){}; - std::unique_ptr<Context> createContext(std::unordered_map<std::string, Property> &values) override; + std::unique_ptr<Context> createContext(dict<std::string, Property> &values) override; void setupArchContext(Context *ctx) override{}; void customBitstream(Context *ctx) override; @@ -52,7 +52,7 @@ po::options_description GenericCommandHandler::getArchOptions() void GenericCommandHandler::customBitstream(Context *ctx) {} -std::unique_ptr<Context> GenericCommandHandler::createContext(std::unordered_map<std::string, Property> &values) +std::unique_ptr<Context> GenericCommandHandler::createContext(dict<std::string, Property> &values) { ArchArgs chipArgs; if (values.find("arch.name") != values.end()) { |