Skip to content

Commit 576486c

Browse files
authored
Merge pull request #11011 from atrick/silval-work
2 parents 82f585b + c312c37 commit 576486c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/AST/DeclContext.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -767,7 +767,7 @@ unsigned DeclContext::printContext(raw_ostream &OS, unsigned indent) const {
767767
break;
768768
case DeclContextKind::SubscriptDecl: Kind = "SubscriptDecl"; break;
769769
}
770-
OS.indent(Depth*2 + indent) << "0x" << (void*)this << " " << Kind;
770+
OS.indent(Depth*2 + indent) << (void*)this << " " << Kind;
771771

772772
switch (getContextKind()) {
773773
case DeclContextKind::Module:

0 commit comments

Comments
 (0)