summaryrefslogtreecommitdiff
path: root/src/mem/cache/tags/repl/repl.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/mem/cache/tags/repl/repl.hh')
-rw-r--r--src/mem/cache/tags/repl/repl.hh8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/mem/cache/tags/repl/repl.hh b/src/mem/cache/tags/repl/repl.hh
index 7c289a5c1..cdb5ae4b8 100644
--- a/src/mem/cache/tags/repl/repl.hh
+++ b/src/mem/cache/tags/repl/repl.hh
@@ -58,12 +58,8 @@ class Repl : public SimObject
/** Pointer to the IIC using this policy. */
IIC *iic;
- /**
- * Construct and initialize this polixy.
- * @param name The instance name of this policy.
- */
- Repl (const std::string &name)
- : SimObject(name)
+ Repl (const Params *params)
+ : SimObject(params)
{
iic = NULL;
}