blob: d87e3dbaf10dfab82e302c47b7d715b0720383d7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- src/common/Pool.h.orig 2008-12-07 00:18:04 UTC
+++ src/common/Pool.h
@@ -393,7 +393,7 @@ class RTList : public RTListBase<T> {
inline Iterator allocAppend() {
if (pPool->poolIsEmpty()) return RTListBase<T>::begin();
Iterator element = pPool->alloc();
- append(element);
+ this->append(element);
#if CONFIG_DEVMODE
element.list = this;
#endif // CONFIG_DEVMODE
|