diff options
| author | Clifford Wolf <clifford@clifford.at> | 2018-06-07 12:48:53 +0200 | 
|---|---|---|
| committer | Clifford Wolf <clifford@clifford.at> | 2018-06-07 12:48:53 +0200 | 
| commit | 2edde06c07cc3cd58ab156d9598d75e1cff1e7de (patch) | |
| tree | d31fa85c4b2f8ae681d5c57080b41e12b39e7a96 /common/pybindings.cc | |
| parent | 8bfeaeacedeb09133b8fb157c876fb90f41f5676 (diff) | |
| download | nextpnr-2edde06c07cc3cd58ab156d9598d75e1cff1e7de.tar.gz nextpnr-2edde06c07cc3cd58ab156d9598d75e1cff1e7de.tar.bz2 nextpnr-2edde06c07cc3cd58ab156d9598d75e1cff1e7de.zip | |
Fix clang-format include order issues
Signed-off-by: Clifford Wolf <clifford@clifford.at>
Diffstat (limited to 'common/pybindings.cc')
| -rw-r--r-- | common/pybindings.cc | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/common/pybindings.cc b/common/pybindings.cc index 7a542dc1..10c8fd44 100644 --- a/common/pybindings.cc +++ b/common/pybindings.cc @@ -21,9 +21,11 @@  #include "design.h"  #include "chip.h" -#include "pybindings.h"  #include "emb.h" +// include after design.h/chip.h +#include "pybindings.h" +  // Required to determine concatenated module name (which differs for different archs)  #define PASTER(x, y) x ## _ ## y  #define EVALUATOR(x, y)  PASTER(x,y) | 
