diff options
author | D. Shah <dave@ds0.me> | 2021-02-04 12:07:11 +0000 |
---|---|---|
committer | D. Shah <dave@ds0.me> | 2021-02-05 19:19:17 +0000 |
commit | b4227f586c59ca959d1bfe0d01c4c04b601fa30f (patch) | |
tree | facdb72b7a49f4d57612f397c425d97c8542ce39 /common | |
parent | 297cd026b9e87ce40ebf781cb86608b43cfbdd55 (diff) | |
download | nextpnr-b4227f586c59ca959d1bfe0d01c4c04b601fa30f.tar.gz nextpnr-b4227f586c59ca959d1bfe0d01c4c04b601fa30f.tar.bz2 nextpnr-b4227f586c59ca959d1bfe0d01c4c04b601fa30f.zip |
Rename ArchBase to BaseArch for consistency with BaseCtx
Signed-off-by: D. Shah <dave@ds0.me>
Diffstat (limited to 'common')
-rw-r--r-- | common/nextpnr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/nextpnr.h b/common/nextpnr.h index e950ad69..cb3f6e9f 100644 --- a/common/nextpnr.h +++ b/common/nextpnr.h @@ -1064,7 +1064,7 @@ typename std::enable_if<!std::is_same<Tret, Tc>::value, Tret>::type return_if_ma } // namespace -template <typename R> struct ArchBase : BaseCtx +template <typename R> struct BaseArch : BaseCtx { // -------------------------------------------------------------- // Arch API base |