From af15230f0dc67989b49a06c72d338a0f2925ae98 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Thu, 28 Jan 2021 22:48:07 -0800 Subject: [PATCH] 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 --- src/arch/generic/isa.hh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) 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; } }; -- 2.30.2