diff options
author | Nathan Binkert <binkertn@umich.edu> | 2004-11-13 16:33:16 -0500 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2004-11-13 16:33:16 -0500 |
commit | acb98fb0f64a3b6a4f2f3151b0d4fb14fdfcf7cf (patch) | |
tree | 4daefdaf22007eb42f30043334447de27e8aa7cb /dev/ethertap.hh | |
parent | bd3e3c02300312ae8d00ae9abf3fa009a2cddbc7 (diff) | |
download | gem5-acb98fb0f64a3b6a4f2f3151b0d4fb14fdfcf7cf.tar.xz |
we shouldn't ever pass around references to PacketPtrs,
const references are ok, or pass by value.
--HG--
extra : convert_revision : 7280a1c7d22b9294fddbe50f02f6f4c6ca9b2e5b
Diffstat (limited to 'dev/ethertap.hh')
-rw-r--r-- | dev/ethertap.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/ethertap.hh b/dev/ethertap.hh index 9c77a4a4f..5f760ed34 100644 --- a/dev/ethertap.hh +++ b/dev/ethertap.hh @@ -94,7 +94,7 @@ class EtherTap : public EtherInt EtherTap(const std::string &name, EtherDump *dump, int port, int bufsz); virtual ~EtherTap(); - virtual bool recvPacket(PacketPtr &packet); + virtual bool recvPacket(PacketPtr packet); virtual void sendDone(); virtual void serialize(std::ostream &os); |