From: Gabe Black Date: Fri, 29 Jan 2021 06:48:07 +0000 (-0800) Subject: arch: Correct style in the ISA base class. X-Git-Tag: develop-gem5-snapshot~185 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=af15230f0dc67989b49a06c72d338a0f2925ae98;p=gem5.git arch: Correct style in the ISA base class. Change-Id: I1732f519bf3eab1dff8b9a9a30fc8e5e132d067d Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/40105 Tested-by: kokoro Reviewed-by: Daniel Carvalho Maintainer: Gabe Black --- diff --git a/src/arch/generic/isa.hh b/src/arch/generic/isa.hh index df07763aa..c1b87341b 100644 --- a/src/arch/generic/isa.hh +++ b/src/arch/generic/isa.hh @@ -52,10 +52,7 @@ class BaseISA : public SimObject ThreadContext *tc = nullptr; public: - virtual void - takeOverFrom(ThreadContext *new_tc, ThreadContext *old_tc) - {} - + virtual void takeOverFrom(ThreadContext *new_tc, ThreadContext *old_tc) {} virtual void setThreadContext(ThreadContext *_tc) { tc = _tc; } };