Richard Cooper has uploaded this change for review. (
https://gem5-review.googlesource.com/c/public/gem5/+/39760 )
Change subject: sim: Fix compilation error for debug builds.
......................................................................
sim: Fix compilation error for debug builds.
https://gem5-review.googlesource.com/c/public/gem5/+/39537 removed the
implicit use of the std:: namespace. This change adds a missing
namespace specifier for debug builds.
Change-Id: I1d70602a870a25f68d7fec4b4931ba7cbbb4f4ca
---
M src/sim/sim_object.cc
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/sim/sim_object.cc b/src/sim/sim_object.cc
index 17dbd1d..28a0863 100644
--- a/src/sim/sim_object.cc
+++ b/src/sim/sim_object.cc
@@ -160,7 +160,7 @@
void
debugObjectBreak(const char *objs)
{
- SimObject::debugObjectBreak(string(objs));
+ SimObject::debugObjectBreak(std::string(objs));
}
#endif
--
To view, visit https://gem5-review.googlesource.com/c/public/gem5/+/39760
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: I1d70602a870a25f68d7fec4b4931ba7cbbb4f4ca
Gerrit-Change-Number: 39760
Gerrit-PatchSet: 1
Gerrit-Owner: Richard Cooper <[email protected]>
Gerrit-MessageType: newchange
_______________________________________________
gem5-dev mailing list -- [email protected]
To unsubscribe send an email to [email protected]
%(web_page_url)slistinfo%(cgiext)s/%(_internal_name)s