Revert r195526, "Remove uninstantiable constructor from DeclTemplate.h"

It apparently causes some versions of GCC to segfault.
http://bb.pgr.jp/builders/cmake-clang-x86_64-linux/builds/17175/steps/build_clang/logs/stdio

llvm-svn: 195529
This commit is contained in:
Peter Collingbourne 2013-11-23 00:51:53 +00:00
parent 57458517ef
commit 6fdeb36587
1 changed files with 1 additions and 0 deletions

View File

@ -564,6 +564,7 @@ protected:
SetIteratorType SetIter;
public:
SpecIterator() : SetIter() {}
SpecIterator(SetIteratorType SetIter) : SetIter(SetIter) {}
DeclType *operator*() const {