Skip to content

Commit 084b91e

Browse files
committed
naming issues
1 parent b4e6710 commit 084b91e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lru_container/src/implements/actual/lru_boost_list_container.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ struct ValueWithHook
1818
{
1919
Value value;
2020
mutable boost::intrusive::list_member_hook<> list_hook;
21-
ValueWithHook *__this;
21+
ValueWithHook *self;
2222

2323
explicit ValueWithHook(const Value& val) : value(val) {
24-
__this = this;
24+
self = this;
2525
}
2626

2727
explicit ValueWithHook(Value&& val) : value(std::move(val)) {
28-
__this = this;
28+
self = this;
2929
}
3030

3131
ValueWithHook() = delete;
@@ -85,7 +85,7 @@ class LRUCacheContainer_BoostList {
8585
IndexSpecifierList,
8686
hashed_unique<
8787
tag<internal_ptr_tag>,
88-
member<CacheItem, CacheItem*, &CacheItem::__this>
88+
member<CacheItem, CacheItem*, &CacheItem::self>
8989
>
9090
>::type;
9191

0 commit comments

Comments
 (0)