aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorgatecat <gatecat@ds0.me>2021-07-01 13:18:34 +0100
committergatecat <gatecat@ds0.me>2021-07-01 13:18:34 +0100
commit86bc708299be1bdaf964c42ebb28dc51d91b75c5 (patch)
tree3b3a97d05135ceb3ad8f15fd0a678066c55d58e0 /common
parentddff2e2e5e940ca32bc34b401ea37b71cefa4ab9 (diff)
downloadnextpnr-86bc708299be1bdaf964c42ebb28dc51d91b75c5.tar.gz
nextpnr-86bc708299be1bdaf964c42ebb28dc51d91b75c5.tar.bz2
nextpnr-86bc708299be1bdaf964c42ebb28dc51d91b75c5.zip
clangformat
Signed-off-by: gatecat <gatecat@ds0.me>
Diffstat (limited to 'common')
-rw-r--r--common/context.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/common/context.h b/common/context.h
index f2b66600..4468d3dd 100644
--- a/common/context.h
+++ b/common/context.h
@@ -39,7 +39,11 @@ struct Context : Arch, DeterministicRNG
ArchArgs arch_args;
- Context(ArchArgs args) : Arch(args) { BaseCtx::as_ctx = this; arch_args = args; }
+ Context(ArchArgs args) : Arch(args)
+ {
+ BaseCtx::as_ctx = this;
+ arch_args = args;
+ }
ArchArgs getArchArgs() { return arch_args; }