From 71b67d408bb595471a57dbe8e40cf5ac82c5d3b7 Mon Sep 17 00:00:00 2001 From: Korey Sewell Date: Thu, 24 Jun 2010 15:34:19 -0400 Subject: inorder: cleanup virtual functions remove the annotation 'virtual' from function declaration that isnt being derived from --- src/cpu/inorder/resource.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/cpu/inorder/resource.hh') diff --git a/src/cpu/inorder/resource.hh b/src/cpu/inorder/resource.hh index b423b1625..3e42593c2 100644 --- a/src/cpu/inorder/resource.hh +++ b/src/cpu/inorder/resource.hh @@ -132,7 +132,7 @@ class Resource { unsigned cmd); /** Schedule Execution of This Resource For A Given Slot*/ - virtual void scheduleExecution(int slot_idx); + void scheduleExecution(int slot_idx); /** Execute the function of this resource. The Default is action * is to do nothing. More specific models will derive from this @@ -195,7 +195,7 @@ class Resource { virtual ResReqPtr findRequest(DynInstPtr inst); /** */ - virtual void rejectRequest(DynInstPtr inst); + void rejectRequest(DynInstPtr inst); /** Request a Resource again. Some resources have to special process this * in subsequent accesses. -- cgit v1.2.3