From 4a968ad27eff0970ebfe3b3ff1b64228bd852a5d Mon Sep 17 00:00:00 2001 From: Sam Hocevar Date: Sun, 31 May 2015 11:07:30 +0000 Subject: [PATCH] =?UTF-8?q?base:=20don=E2=80=99t=20prefix=20variable=20nam?= =?UTF-8?q?es=20with=20=E2=80=98=5F=E2=80=99.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/lol/base/avl_tree.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/lol/base/avl_tree.h b/src/lol/base/avl_tree.h index 0a70f9f4..deb80651 100644 --- a/src/lol/base/avl_tree.h +++ b/src/lol/base/avl_tree.h @@ -505,9 +505,9 @@ public: struct output_value { - output_value(K const & _key, V & _value) : - key(_key), - value(_value) + output_value(K const & key_, V & value_) : + key(key_), + value(value_) { } @@ -571,9 +571,9 @@ public: struct const_output_value { - const_output_value(K const & _key, V const & _value) : - key(_key), - value(_value) + const_output_value(K const & key_, V const & value_) : + key(key_), + value(value_) { }