Commit c33ee255 authored by neverlord's avatar neverlord

use nullptr instead of 0 literal

parent 00f1e528
......@@ -37,7 +37,7 @@ struct abstract_type_list
public:
const_iterator(abstract_iterator* x = 0) : m_iter(x) { }
const_iterator(abstract_iterator* x = nullptr) : m_iter(x) { }
const_iterator(const const_iterator& other)
: m_iter((other.m_iter) ? other.m_iter->copy() : nullptr)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment