diff options
author | David Shah <davey1576@gmail.com> | 2018-07-04 12:15:23 +0200 |
---|---|---|
committer | David Shah <davey1576@gmail.com> | 2018-07-04 12:15:23 +0200 |
commit | e0a851976f7bc51702bc6ba667f36749cd554ebb (patch) | |
tree | 7ad0979da5cf954ccef6a21884d23fd55c3d7299 /json | |
parent | b96727549ccd319f61d33982f678075880fad166 (diff) | |
download | nextpnr-e0a851976f7bc51702bc6ba667f36749cd554ebb.tar.gz nextpnr-e0a851976f7bc51702bc6ba667f36749cd554ebb.tar.bz2 nextpnr-e0a851976f7bc51702bc6ba667f36749cd554ebb.zip |
refactor: Replace assert with NPNR_ASSERT
Signed-off-by: David Shah <davey1576@gmail.com>
Diffstat (limited to 'json')
-rw-r--r-- | json/jsonparse.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/json/jsonparse.cc b/json/jsonparse.cc index bf1760d3..3bcbe285 100644 --- a/json/jsonparse.cc +++ b/json/jsonparse.cc @@ -25,10 +25,10 @@ #include <assert.h> #include <fstream> #include <iostream> +#include <iterator> #include <log.h> #include <map> #include <string> -#include <iterator> #include "nextpnr.h" NEXTPNR_NAMESPACE_BEGIN |