[PATCH] D107477: [Clang][AST][NFC] Resolve FIXME: Make CXXRecordDecl *Record const.
Alf via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Aug 5 12:45:29 PDT 2021
gAlfonso-bit updated this revision to Diff 364584.
gAlfonso-bit added a comment.
Improved patch
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D107477/new/
https://reviews.llvm.org/D107477
Files:
clang/include/clang/AST/ComparisonCategories.h
Index: clang/include/clang/AST/ComparisonCategories.h
===================================================================
--- clang/include/clang/AST/ComparisonCategories.h
+++ clang/include/clang/AST/ComparisonCategories.h
@@ -115,8 +115,7 @@
public:
/// The declaration for the comparison category type from the
/// standard library.
- // FIXME: Make this const
- CXXRecordDecl *Record = nullptr;
+ const CXXRecordDecl *Record = nullptr;
/// The Kind of the comparison category type
ComparisonCategoryType Kind;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D107477.364584.patch
Type: text/x-patch
Size: 532 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20210805/20cf5fbc/attachment.bin>
More information about the cfe-commits
mailing list