Skip to content

Commit

Permalink
Fix previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mcbarton authored Mar 31, 2024
1 parent 690599c commit 88c18fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/Differentiator/CladUtils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ namespace clad {
/*ASM=*/clad_compat::ArraySizeModifier_Normal,
/*IndexTypeQuals*/ 0);
StringLiteral* SL = StringLiteral::Create(C, str,
/*Kind=*/clad_compat::StringKind_Ordinary,
/*Kind=*/clad_compat::StringLiteralKind_Ordinary,
/*Pascal=*/false, StrTy, noLoc);
return SL;
}
Expand Down
2 changes: 1 addition & 1 deletion lib/Differentiator/HessianModeVisitor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ namespace clad {
/*ASM=*/clad_compat::ArraySizeModifier_Normal,
/*IndexTypeQuals*/ 0);
const StringLiteral* SL =
StringLiteral::Create(C, str, /*Kind=*/clad_compat::StringKind_Ordinary,
StringLiteral::Create(C, str, /*Kind=*/clad_compat::StringLiteralKind_Ordinary,
/*Pascal=*/false, StrTy, noLoc);
return SL;
}
Expand Down

0 comments on commit 88c18fe

Please sign in to comment.