aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
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; }