aboutsummaryrefslogtreecommitdiffstats
path: root/common/command.h
diff options
context:
space:
mode:
authorMiodrag Milanovic <mmicko@gmail.com>2019-06-25 18:19:25 +0200
committerMiodrag Milanovic <mmicko@gmail.com>2019-06-25 18:19:25 +0200
commitbe47fc3e9a81a4890b05223ae18803cb07674dc9 (patch)
treeb0690ae9c7fd1c06db96ab036c3e177d50f6961d /common/command.h
parentec47ce2320fdc9d698e71c07af0844f7ecc2445c (diff)
downloadnextpnr-be47fc3e9a81a4890b05223ae18803cb07674dc9.tar.gz
nextpnr-be47fc3e9a81a4890b05223ae18803cb07674dc9.tar.bz2
nextpnr-be47fc3e9a81a4890b05223ae18803cb07674dc9.zip
clangformat run
Diffstat (limited to 'common/command.h')
-rw-r--r--common/command.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/command.h b/common/command.h
index b5908e3f..e52b5a48 100644
--- a/common/command.h
+++ b/common/command.h
@@ -23,8 +23,8 @@
#include <boost/program_options.hpp>
#include <fstream>
-#include "nextpnr.h"
#include "log.h"
+#include "nextpnr.h"
NEXTPNR_NAMESPACE_BEGIN
@@ -41,7 +41,7 @@ class CommandHandler
protected:
virtual void setupArchContext(Context *ctx) = 0;
- virtual std::unique_ptr<Context> createContext(std::unordered_map<std::string,Property> &values) = 0;
+ virtual std::unique_ptr<Context> createContext(std::unordered_map<std::string, Property> &values) = 0;
virtual po::options_description getArchOptions() = 0;
virtual void validate(){};
virtual void customAfterLoad(Context *ctx){};