arch: Correct style in the ISA base class.
authorGabe Black <gabe.black@gmail.com>
Fri, 29 Jan 2021 06:48:07 +0000 (22:48 -0800)
committerGabe Black <gabe.black@gmail.com>
Sun, 31 Jan 2021 10:54:22 +0000 (10:54 +0000)
Change-Id: I1732f519bf3eab1dff8b9a9a30fc8e5e132d067d
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/40105
Tested-by: kokoro <noreply+kokoro@google.com>
Reviewed-by: Daniel Carvalho <odanrc@yahoo.com.br>
Maintainer: Gabe Black <gabe.black@gmail.com>

src/arch/generic/isa.hh

index df07763aadc690a59fa390c0e58f077d1f9204d5..c1b87341bee75b1787e7ba5479825c4b266cda42 100644 (file)
@@ -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; }
 };