Skip to content
Snippets Groups Projects
Commit 0760c332 authored by Nico Weber's avatar Nico Weber
Browse files

Wrap to 80 columns. No behavior change.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@231621 91177308-0d34-0410-b5e6-96231b3b80d8
parent a9ee4553
No related branches found
No related tags found
No related merge requests found
...@@ -10342,9 +10342,9 @@ Decl *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Decl *D) { ...@@ -10342,9 +10342,9 @@ Decl *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Decl *D) {
I != E; ++I) { I != E; ++I) {
NamedDecl *D = *I; NamedDecl *D = *I;
   
// Some of these decls (like enums) may have been pinned to the translation unit // Some of these decls (like enums) may have been pinned to the
// for lack of a real context earlier. If so, remove from the translation unit // translation unit for lack of a real context earlier. If so, remove
// and reattach to the current context. // from the translation unit and reattach to the current context.
if (D->getLexicalDeclContext() == Context.getTranslationUnitDecl()) { if (D->getLexicalDeclContext() == Context.getTranslationUnitDecl()) {
// Is the decl actually in the context? // Is the decl actually in the context?
for (const auto *DI : Context.getTranslationUnitDecl()->decls()) { for (const auto *DI : Context.getTranslationUnitDecl()->decls()) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment