aboutsummaryrefslogtreecommitdiffstats
path: root/extras/vom/vom/acl_binding_cmds.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'extras/vom/vom/acl_binding_cmds.hpp')
-rw-r--r--extras/vom/vom/acl_binding_cmds.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/extras/vom/vom/acl_binding_cmds.hpp b/extras/vom/vom/acl_binding_cmds.hpp
index b9af66e70c8..8515b4148ac 100644
--- a/extras/vom/vom/acl_binding_cmds.hpp
+++ b/extras/vom/vom/acl_binding_cmds.hpp
@@ -29,7 +29,7 @@ namespace binding_cmds {
* A command class that binds the ACL to the interface
*/
template <typename BIND>
-class bind_cmd : public rpc_cmd<HW::item<bool>, rc_t, BIND>
+class bind_cmd : public rpc_cmd<HW::item<bool>, BIND>
{
public:
/**
@@ -39,7 +39,7 @@ public:
const direction_t& direction,
const handle_t& itf,
const handle_t& acl)
- : rpc_cmd<HW::item<bool>, rc_t, BIND>(item)
+ : rpc_cmd<HW::item<bool>, BIND>(item)
, m_direction(direction)
, m_itf(itf)
, m_acl(acl)
@@ -85,7 +85,7 @@ private:
* A command class that binds the ACL to the interface
*/
template <typename BIND>
-class unbind_cmd : public rpc_cmd<HW::item<bool>, rc_t, BIND>
+class unbind_cmd : public rpc_cmd<HW::item<bool>, BIND>
{
public:
/**
@@ -95,7 +95,7 @@ public:
const direction_t& direction,
const handle_t& itf,
const handle_t& acl)
- : rpc_cmd<HW::item<bool>, rc_t, BIND>(item)
+ : rpc_cmd<HW::item<bool>, BIND>(item)
, m_direction(direction)
, m_itf(itf)
, m_acl(acl)