Kovacsics Róbert has uploaded a new patch set (#2). (
https://gem5-review.googlesource.com/11809 )
Change subject: mem: Removed "using namespace std;" from src/mem/packet.cc
......................................................................
mem: Removed "using namespace std;" from src/mem/packet.cc
To avoid unintentional variable capture, these are the identifiers
which are in the std namespace (according to
https://en.cppreference.com/w/cpp/symbol_index), but not prefixed with
"std::"
int8_t int16_t int32_t int64_t
uint8_t uint16_t uint32_t uint64_t
set
The (u)int types are included from src/mem/packet.hh then from
src/base/types.hh then from <inttypes.h>
The set is from Packet::set, which in a Packet:: function should
shadow the std::set (it is in Packet::setUintX)
Change-Id: I7f6c0b61b09658e224fe31a9f73150b81861d6f8
---
M src/mem/packet.cc
1 file changed, 12 insertions(+), 11 deletions(-)
--
To view, visit https://gem5-review.googlesource.com/11809
To unsubscribe, or for help writing mail filters, visit
https://gem5-review.googlesource.com/settings
Gerrit-Project: public/gem5
Gerrit-Branch: master
Gerrit-Change-Id: I7f6c0b61b09658e224fe31a9f73150b81861d6f8
Gerrit-Change-Number: 11809
Gerrit-PatchSet: 2
Gerrit-Owner: Kovacsics Róbert <[email protected]>
Gerrit-MessageType: newpatchset
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev