Fix mismerge in r262121

A break statement was lost in the merge.  The error had no functional
impact, but restore it to reduce the diff against upstream.
This commit is contained in:
Ed Maste 2014-02-18 19:46:45 +00:00
parent 7a902ec0ec
commit 8584c88e4d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=262186

View File

@ -1915,6 +1915,7 @@ ClangASTType::GetEncoding (uint64_t &count) const
case clang::Type::Decltype:
case clang::Type::TemplateSpecialization:
case clang::Type::Atomic:
break;
// pointer type decayed from an array or function type.
case clang::Type::Decayed: