forked from OSchip/llvm-project
[Syntax] Add missing default constructor for ConstChildIterator
MSVC was complaining as it couldn't see the Base::ChildIteratorBase default constructor.
This commit is contained in:
parent
5febc535c4
commit
c0053c62d9
|
@ -215,6 +215,7 @@ public:
|
|||
struct ConstChildIterator
|
||||
: ChildIteratorBase<ConstChildIterator, const Node> {
|
||||
using Base::ChildIteratorBase;
|
||||
ConstChildIterator() = default;
|
||||
ConstChildIterator(const ChildIterator &I) : Base(I.asPointer()) {}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue