Bobby Bruce has uploaded this change for review. ( https://gem5-review.googlesource.com/c/public/gem5/+/66152?usp=email )

Change subject: sim: Add missing virtual deconstructor to GlobalSyncEvent
......................................................................

sim: Add missing virtual deconstructor to GlobalSyncEvent

This missing deconstructor in GlobalSyncEvent was causing a compilation
error in gcc-12, thus causing the compiler-tests to fail:
https://jenkins.gem5.org/job/compiler-checks/436/

Change-Id: Iab86d3f6d55064ba3b6a8a7cb01fb14533cce4b9
---
M src/sim/global_event.hh
1 file changed, 15 insertions(+), 0 deletions(-)



diff --git a/src/sim/global_event.hh b/src/sim/global_event.hh
index 05ae6ca..5b57f46 100644
--- a/src/sim/global_event.hh
+++ b/src/sim/global_event.hh
@@ -229,6 +229,8 @@
         schedule(when);
     }

+    virtual ~GlobalSyncEvent (){}
+
     void process();

     const char *description() const;

--
To view, visit https://gem5-review.googlesource.com/c/public/gem5/+/66152?usp=email To unsubscribe, or for help writing mail filters, visit https://gem5-review.googlesource.com/settings

Gerrit-Project: public/gem5
Gerrit-Branch: develop
Gerrit-Change-Id: Iab86d3f6d55064ba3b6a8a7cb01fb14533cce4b9
Gerrit-Change-Number: 66152
Gerrit-PatchSet: 1
Gerrit-Owner: Bobby Bruce <bbr...@ucdavis.edu>
Gerrit-MessageType: newchange
_______________________________________________
gem5-dev mailing list -- gem5-dev@gem5.org
To unsubscribe send an email to gem5-dev-le...@gem5.org

Reply via email to