36 const_cast<DLListBase&>(static_cast<const DLListBase&>(DLListBase()))
41 static_cast<const DLListBase&>(DLListBase()),
42 reinterpret_cast<const link*>(0)
177 <<
"remove from empty list"
200 if (l == first_ && first_ == last_)
205 else if (l == first_)
207 first_ = first_->
next_;
208 first_->
prev_ = first_;
212 last_ = last_->
prev_;
213 last_->
next_ = last_;
237 if (oldLink == first_ && first_ == last_)
242 else if (oldLink == first_)
247 else if (oldLink == last_)