We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4e6710 commit 084b91eCopy full SHA for 084b91e
lru_container/src/implements/actual/lru_boost_list_container.h
@@ -18,14 +18,14 @@ struct ValueWithHook
18
{
19
Value value;
20
mutable boost::intrusive::list_member_hook<> list_hook;
21
- ValueWithHook *__this;
+ ValueWithHook *self;
22
23
explicit ValueWithHook(const Value& val) : value(val) {
24
- __this = this;
+ self = this;
25
}
26
27
explicit ValueWithHook(Value&& val) : value(std::move(val)) {
28
29
30
31
ValueWithHook() = delete;
@@ -85,7 +85,7 @@ class LRUCacheContainer_BoostList {
85
IndexSpecifierList,
86
hashed_unique<
87
tag<internal_ptr_tag>,
88
- member<CacheItem, CacheItem*, &CacheItem::__this>
+ member<CacheItem, CacheItem*, &CacheItem::self>
89
>
90
>::type;
91
0 commit comments