Skip to content

Commit 54ed81c

Browse files
committed
Format
1 parent 1d1df27 commit 54ed81c

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

lib/AST/DeclContext.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -870,7 +870,6 @@ void IterableDeclContext::addMember(Decl *member, Decl *hint, bool insertAtHead)
870870
}
871871
}
872872

873-
874873
void IterableDeclContext::addMemberSilently(Decl *member, Decl *hint,
875874
bool insertAtHead) const {
876875
assert(!isa<AccessorDecl>(member) && "Accessors should not be added here");

lib/ClangImporter/ClangImporter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3115,7 +3115,7 @@ void ClangImporter::lookupValue(DeclName name, VisibleDeclConsumer &consumer) {
31153115
ClangNode ClangImporter::getEffectiveClangNode(const Decl *decl) const {
31163116
// Directly...
31173117
if (auto clangNode = decl->getClangNode())
3118-
return clangNode;
3118+
return clangNode;
31193119

31203120
// Or via the nested "Code" enum.
31213121
if (auto *errorWrapper = dyn_cast<StructDecl>(decl)) {

0 commit comments

Comments
 (0)