diff options
Diffstat (limited to 'generic/main.cc')
-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 c203f35c..8ab3b0e8 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() override; + std::unique_ptr<Context> createContext(std::unordered_map<std::string,Property> &values) override; void setupArchContext(Context *ctx) override{}; void customBitstream(Context *ctx) override; @@ -51,7 +51,7 @@ po::options_description GenericCommandHandler::getArchOptions() void GenericCommandHandler::customBitstream(Context *ctx) {} -std::unique_ptr<Context> GenericCommandHandler::createContext() +std::unique_ptr<Context> GenericCommandHandler::createContext(std::unordered_map<std::string,Property> &values) { return std::unique_ptr<Context>(new Context(chipArgs)); } |