Skip to content

Commit 4761ace

Browse files
committed
remove top level const
1 parent 0f2b781 commit 4761ace

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/include/clang/Sema/SemaConcept.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -271,8 +271,8 @@ bool FoldExpandedConstraint::subsumes(
271271
if (Kind != Other.Kind || !AreCompatibleForSubsumption(*this, Other))
272272
return false;
273273

274-
const NormalForm PDNF = makeDNF(this->Constraint);
275-
const NormalForm QCNF = makeCNF(Other.Constraint);
274+
NormalForm PDNF = makeDNF(this->Constraint);
275+
NormalForm QCNF = makeCNF(Other.Constraint);
276276
return clang::subsumes(PDNF, QCNF, E);
277277
}
278278

0 commit comments

Comments
 (0)