From: Gabe Black Date: Mon, 23 Oct 2006 15:17:59 +0000 (-0400) Subject: Minor compile fix. Not sure why this is broken. X-Git-Tag: m5_2.0_beta2~74 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ef8b7713ca1b6120ae4e851877f2a9ce71296219;p=gem5.git Minor compile fix. Not sure why this is broken. --HG-- extra : convert_revision : 6f181b15f37114ca0a3965cabcb2036bd2f97916 --- diff --git a/src/cpu/ozone/lw_lsq.hh b/src/cpu/ozone/lw_lsq.hh index 8307da521..dc58a8285 100644 --- a/src/cpu/ozone/lw_lsq.hh +++ b/src/cpu/ozone/lw_lsq.hh @@ -260,7 +260,7 @@ class OzoneLWLSQ { virtual void getDeviceAddressRanges(AddrRangeList &resp, AddrRangeList &snoop) - { resp.clear(); snoop.clear(); snoop.push_back(RangeSize(0,-1); } + { resp.clear(); snoop.clear(); snoop.push_back(RangeSize(0,-1)); } virtual bool recvTiming(PacketPtr pkt);