Skip to content

Commit 0d66b0c

Browse files
committed
[AST] Fix indenation in hasValueSemantics()
1 parent e8fe05d commit 0d66b0c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/AST/DeclContext.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1025,8 +1025,8 @@ DeclContextKind DeclContext::getContextKind() const {
10251025
}
10261026

10271027
bool DeclContext::hasValueSemantics() const {
1028-
if (!isTypeContext())
1029-
return false;
1028+
if (!isTypeContext())
1029+
return false;
10301030

10311031
if (auto contextTy = getSelfTypeInContext()) {
10321032
return !contextTy->hasReferenceSemantics();

0 commit comments

Comments
 (0)