diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2006-02-24 03:51:21 -0500 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2006-02-24 03:51:21 -0500 |
commit | 802fd04f640b34d713f7ef75142e51d3d82559b9 (patch) | |
tree | 6cd87baa943fac7fbf1df1d5e89b1b66a849152c /cpu | |
parent | 08637efadc40a1003d68bba91dedb007fe10798c (diff) | |
download | gem5-802fd04f640b34d713f7ef75142e51d3d82559b9.tar.xz |
Removed a stray ::.
--HG--
extra : convert_revision : f6114b78e30e8cba5af6276042b0f043d8773739
Diffstat (limited to 'cpu')
-rw-r--r-- | cpu/o3/alpha_cpu.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/o3/alpha_cpu.hh b/cpu/o3/alpha_cpu.hh index b35bcf9e3..ea0aae41f 100644 --- a/cpu/o3/alpha_cpu.hh +++ b/cpu/o3/alpha_cpu.hh @@ -280,7 +280,7 @@ class AlphaFullCPU : public FullO3CPU<Impl> #endif - return this->mem->write(req, (T)::htog(data)); + return this->mem->write(req, (T)htog(data)); } template <class T> |