Skip to content

Commit

Permalink
website: add missing overrides (#73)
Browse files Browse the repository at this point in the history
Related change: gem5/gem5#135
  • Loading branch information
BobbyRBruce authored Jul 27, 2023
2 parents c37814d + 217752a commit 04753ff
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions _pages/documentation/learning_gem5/part2/part2_3_events.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class HelloObject : public SimObject
public:
HelloObject(const HelloObjectParams &p);

void startup();
void startup() override;
};
```

Expand Down Expand Up @@ -150,7 +150,7 @@ class HelloObject : public SimObject
public:
HelloObject(const HelloObjectParams &p);

void startup();
void startup() override;
};
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ class HelloObject : public SimObject
public:
HelloObject(HelloObjectParams *p);
void startup();
void startup() override;
};
```

Expand Down Expand Up @@ -415,7 +415,7 @@ class HelloObject : public SimObject
public:
HelloObject(const HelloObjectParams &p);

void startup();
void startup() override;
};
```

Expand Down
2 changes: 1 addition & 1 deletion _pages/static/scripts/part2/events/hello_object.hh
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class HelloObject : public SimObject
public:
HelloObject(const HelloObjectParams &p);

void startup();
void startup() override;
};

#endif // __LEARNING_GEM5_HELLO_OBJECT_HH__
2 changes: 1 addition & 1 deletion _pages/static/scripts/part2/parameters/hello_object.hh
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class HelloObject : public SimObject
public:
HelloObject(const HelloObjectParams &p);

void startup();
void startup() override;
};

#endif // __LEARNING_GEM5_HELLO_OBJECT_HH__

0 comments on commit 04753ff

Please sign in to comment.