From 5f368fe09fd75e6af1dfbd5968228552c85b0834 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Sat, 8 Feb 2014 18:35:31 +0100 Subject: [PATCH] Added missing "typename" --- test/itestvalue.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/itestvalue.hpp b/test/itestvalue.hpp index d13a2c0..91bd182 100644 --- a/test/itestvalue.hpp +++ b/test/itestvalue.hpp @@ -52,8 +52,8 @@ struct testvalue // have to be handled appropriately when copied: testvalue & operator= (const testvalue& src) { - Hooks::base_hook_type::operator=(static_cast(src)); - Hooks::auto_base_hook_type::operator=(static_cast(src)); + Hooks::base_hook_type::operator=(static_cast(src)); + Hooks::auto_base_hook_type::operator=(static_cast(src)); this->node_ = src.node_; this->auto_node_ = src.auto_node_; value_ = src.value_; @@ -62,8 +62,8 @@ struct testvalue void swap_nodes(testvalue &other) { - Hooks::base_hook_type::swap_nodes(static_cast(other)); - Hooks::auto_base_hook_type::swap_nodes(static_cast(other)); + Hooks::base_hook_type::swap_nodes(static_cast(other)); + Hooks::auto_base_hook_type::swap_nodes(static_cast(other)); node_.swap_nodes(other.node_); auto_node_.swap_nodes(other.auto_node_); }