forked from OSchip/llvm-project
Fix the build with GCC 4.8 after r356783
llvm-svn: 356875
This commit is contained in:
parent
57949eb677
commit
5519cb2d94
|
@ -665,7 +665,7 @@ template <class AliasAnalysisType> class ClobberWalker {
|
|||
struct generic_def_path_iterator
|
||||
: public iterator_facade_base<generic_def_path_iterator<T, Walker>,
|
||||
std::forward_iterator_tag, T *> {
|
||||
generic_def_path_iterator() = default;
|
||||
generic_def_path_iterator() {}
|
||||
generic_def_path_iterator(Walker *W, ListIndex N) : W(W), N(N) {}
|
||||
|
||||
T &operator*() const { return curNode(); }
|
||||
|
|
Loading…
Reference in New Issue