forked from OSchip/llvm-project
Fix a little typo... per cfe-dev, this was apparently causing test
failures on OS X in some cases. (Thank you valgrind.) llvm-svn: 47568
This commit is contained in:
parent
2ff975e749
commit
0992b38a78
|
@ -726,7 +726,7 @@ QualType ASTContext::getFunctionTypeNoProto(QualType ResultTy) {
|
|||
|
||||
FunctionTypeNoProto *New = new FunctionTypeNoProto(ResultTy, Canonical);
|
||||
Types.push_back(New);
|
||||
FunctionTypeProtos.InsertNode(New, InsertPos);
|
||||
FunctionTypeNoProtos.InsertNode(New, InsertPos);
|
||||
return QualType(New, 0);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue