Fixed CXX struct and class initialization printing to support 'move'

type constructors.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@143309 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Jim Goodnow II 2011-10-30 11:17:39 +00:00
Родитель 01c770d6c9
Коммит 5eca37c7fe
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -616,7 +616,7 @@ void DeclPrinter::VisitVarDecl(VarDecl *D) {
Out << "(";
else {
CXXConstructExpr *CCE = dyn_cast<CXXConstructExpr>(Init);
if (!CCE || CCE->getConstructor()->isCopyConstructor())
if (!CCE || CCE->getConstructor()->isCopyOrMoveConstructor())
Out << " = ";
}
Init->printPretty(Out, Context, 0, Policy, Indentation);