Page MenuHomePhabricator
Feed Advanced Search

Today

carlosgalvezp committed rG4d4c0f973460: [clang-tidy] Add option to ignore capture default by reference in… (authored by carlosgalvezp).
[clang-tidy] Add option to ignore capture default by reference in…
Tue, Mar 28, 1:37 PM · Restricted Project, Restricted Project
carlosgalvezp closed D147062: [clang-tidy] Add option to ignore capture default by reference in cppcoreguidelines-avoid-capture-default-when-capturing-this.
Tue, Mar 28, 1:37 PM · Restricted Project, Restricted Project
carlosgalvezp added a comment to D147062: [clang-tidy] Add option to ignore capture default by reference in cppcoreguidelines-avoid-capture-default-when-capturing-this.

If https://github.com/isocpp/CppCoreGuidelines/issues/2060 is accepted to only consider [=], then I assume we'd want to change the default value of IgnoreCaptureDefaultByReference to be true? Thanks by the way for this!

Tue, Mar 28, 1:20 PM · Restricted Project, Restricted Project
carlosgalvezp requested changes to D146887: [clang-tidy] Fix if-constexpr false-positive in readability-misleading-indentation.
Tue, Mar 28, 1:17 PM · Restricted Project, Restricted Project
carlosgalvezp added inline comments to D146875: [clang-tidy] Fix example provided by add_new_check.py.
Tue, Mar 28, 12:46 PM · Restricted Project, Restricted Project
carlosgalvezp updated the diff for D147062: [clang-tidy] Add option to ignore capture default by reference in cppcoreguidelines-avoid-capture-default-when-capturing-this.

Fix typo in doc.

Tue, Mar 28, 10:15 AM · Restricted Project, Restricted Project
carlosgalvezp updated the diff for D147062: [clang-tidy] Add option to ignore capture default by reference in cppcoreguidelines-avoid-capture-default-when-capturing-this.

Clean up check suffix in test.

Tue, Mar 28, 10:08 AM · Restricted Project, Restricted Project
carlosgalvezp added a reviewer for D147062: [clang-tidy] Add option to ignore capture default by reference in cppcoreguidelines-avoid-capture-default-when-capturing-this: ccotter.
Tue, Mar 28, 9:53 AM · Restricted Project, Restricted Project
carlosgalvezp requested review of D147062: [clang-tidy] Add option to ignore capture default by reference in cppcoreguidelines-avoid-capture-default-when-capturing-this.
Tue, Mar 28, 9:52 AM · Restricted Project, Restricted Project

Sun, Mar 26

carlosgalvezp committed rG556600af6a8a: [clang-tidy] Add option to ignore user-defined literals in readability-magic… (authored by carlosgalvezp).
[clang-tidy] Add option to ignore user-defined literals in readability-magic…
Sun, Mar 26, 9:43 AM · Restricted Project, Restricted Project
carlosgalvezp closed D146913: [clang-tidy] Add option to ignore user-defined literals in readability-magic-numbers.
Sun, Mar 26, 9:43 AM · Restricted Project, Restricted Project
carlosgalvezp updated the diff for D146913: [clang-tidy] Add option to ignore user-defined literals in readability-magic-numbers.

Move implementation to .cpp file.

Sun, Mar 26, 6:34 AM · Restricted Project, Restricted Project
carlosgalvezp added reviewers for D146913: [clang-tidy] Add option to ignore user-defined literals in readability-magic-numbers: Eugene.Zelenko, PiotrZSL.
Sun, Mar 26, 6:15 AM · Restricted Project, Restricted Project
carlosgalvezp accepted D145617: [clang-tidy] Add readability-avoid-unconditional-preprocessor-if check.

LGTM, thanks!

Sun, Mar 26, 6:13 AM · Restricted Project, Restricted Project
carlosgalvezp added a comment to D145617: [clang-tidy] Add readability-avoid-unconditional-preprocessor-if check.

@carlosgalvezp Do you want me to shorten documentation ? Or we leave it like it is ?

Sun, Mar 26, 6:13 AM · Restricted Project, Restricted Project
carlosgalvezp requested review of D146913: [clang-tidy] Add option to ignore user-defined literals in readability-magic-numbers.
Sun, Mar 26, 6:11 AM · Restricted Project, Restricted Project

Sat, Mar 25

carlosgalvezp added a reviewer for D63324: [clang-tidy] Replace memcpy by std::copy: carlosgalvezp.
Sat, Mar 25, 4:13 AM · Restricted Project, Restricted Project, Restricted Project
carlosgalvezp added inline comments to D143971: [clang-tidy] Flag more buggy string constructor cases.
Sat, Mar 25, 4:10 AM · Restricted Project, Restricted Project
carlosgalvezp added a comment to D146520: [clang-tidy] Fix checks filter with warnings-as-errors.

Reading through Github I found the associated ticket (it would be good if you could mention it in the commit message):
https://github.com/llvm/llvm-project/issues/61520

Sat, Mar 25, 3:54 AM · Restricted Project, Restricted Project
carlosgalvezp added a comment to D146520: [clang-tidy] Fix checks filter with warnings-as-errors.

Also, regarding clang-analyzer-core checks, I have 2 tickets open:

Sat, Mar 25, 3:47 AM · Restricted Project, Restricted Project
carlosgalvezp added a comment to D146520: [clang-tidy] Fix checks filter with warnings-as-errors.

I'm not sure I follow - if you enable warnings as error for all checks, then the expectation is that you indeed get an error if you violate one of the clang-analyzer checks. In what way is this not wanted?

Sat, Mar 25, 3:42 AM · Restricted Project, Restricted Project
carlosgalvezp requested changes to D145617: [clang-tidy] Add readability-avoid-unconditional-preprocessor-if check.

I noticed the pre-merge checks are red, however, would be good to get them fixed.

Sat, Mar 25, 3:38 AM · Restricted Project, Restricted Project
carlosgalvezp accepted D145617: [clang-tidy] Add readability-avoid-unconditional-preprocessor-if check.

LGTM thank you! Really useful check! I'm not very expert in the PP callbacks so I can't give much feedback, feel free to wait for other more expert reviewers if you want.

Sat, Mar 25, 3:37 AM · Restricted Project, Restricted Project
carlosgalvezp added a comment to D144522: [clang-tidy] Add readability-operators-representation check.

Looks really good, thank you! I have only very minor comments, mostly style nits and suggestions for improved readability.

Sat, Mar 25, 3:31 AM · Restricted Project, Restricted Project

Fri, Mar 24

carlosgalvezp added inline comments to D146655: [clang-tidy] Ignore DISABLED_ in test suite name in google-avoid-underscore-in-googletest-name.
Fri, Mar 24, 12:24 AM · Restricted Project, Restricted Project
carlosgalvezp committed rGf957b8fe1efe: [clang-tidy][NFC] Improve naming convention in google-readability-avoid… (authored by carlosgalvezp).
[clang-tidy][NFC] Improve naming convention in google-readability-avoid…
Fri, Mar 24, 12:23 AM · Restricted Project, Restricted Project
carlosgalvezp closed D146713: [clang-tidy][NFC] Improve naming convention in google-readability-avoid-underscore-in-googletest-name.
Fri, Mar 24, 12:22 AM · Restricted Project, Restricted Project

Thu, Mar 23

carlosgalvezp added inline comments to D146655: [clang-tidy] Ignore DISABLED_ in test suite name in google-avoid-underscore-in-googletest-name.
Thu, Mar 23, 9:37 AM · Restricted Project, Restricted Project
carlosgalvezp added inline comments to D146713: [clang-tidy][NFC] Improve naming convention in google-readability-avoid-underscore-in-googletest-name.
Thu, Mar 23, 9:35 AM · Restricted Project, Restricted Project
carlosgalvezp updated the diff for D146713: [clang-tidy][NFC] Improve naming convention in google-readability-avoid-underscore-in-googletest-name.

Fix missing naming convention in the test.

Thu, Mar 23, 9:35 AM · Restricted Project, Restricted Project
carlosgalvezp added reviewers for D146713: [clang-tidy][NFC] Improve naming convention in google-readability-avoid-underscore-in-googletest-name: Eugene.Zelenko, LegalizeAdulthood, PiotrZSL.
Thu, Mar 23, 5:20 AM · Restricted Project, Restricted Project
carlosgalvezp requested review of D146713: [clang-tidy][NFC] Improve naming convention in google-readability-avoid-underscore-in-googletest-name.
Thu, Mar 23, 5:19 AM · Restricted Project, Restricted Project
carlosgalvezp committed rGb7677846da66: [clang-tidy][NFC] Fix broken link in Release Notes (authored by carlosgalvezp).
[clang-tidy][NFC] Fix broken link in Release Notes
Thu, Mar 23, 3:30 AM · Restricted Project, Restricted Project
carlosgalvezp committed rGb08d35f826a6: [clang-tidy] Ignore DISABLED_ in test suite name in google-avoid-underscore-in… (authored by carlosgalvezp).
[clang-tidy] Ignore DISABLED_ in test suite name in google-avoid-underscore-in…
Thu, Mar 23, 1:31 AM · Restricted Project, Restricted Project
carlosgalvezp closed D146655: [clang-tidy] Ignore DISABLED_ in test suite name in google-avoid-underscore-in-googletest-name.
Thu, Mar 23, 1:31 AM · Restricted Project, Restricted Project
carlosgalvezp added inline comments to D146655: [clang-tidy] Ignore DISABLED_ in test suite name in google-avoid-underscore-in-googletest-name.
Thu, Mar 23, 1:05 AM · Restricted Project, Restricted Project
carlosgalvezp added inline comments to D146655: [clang-tidy] Ignore DISABLED_ in test suite name in google-avoid-underscore-in-googletest-name.
Thu, Mar 23, 12:18 AM · Restricted Project, Restricted Project

Wed, Mar 22

carlosgalvezp updated the diff for D146655: [clang-tidy] Ignore DISABLED_ in test suite name in google-avoid-underscore-in-googletest-name.

Remove excessive newline

Wed, Mar 22, 12:07 PM · Restricted Project, Restricted Project
carlosgalvezp updated the diff for D146655: [clang-tidy] Ignore DISABLED_ in test suite name in google-avoid-underscore-in-googletest-name.

Update commit message

Wed, Mar 22, 12:06 PM · Restricted Project, Restricted Project
carlosgalvezp updated the diff for D146655: [clang-tidy] Ignore DISABLED_ in test suite name in google-avoid-underscore-in-googletest-name.

Add to release notes.

Wed, Mar 22, 12:04 PM · Restricted Project, Restricted Project
carlosgalvezp added reviewers for D146655: [clang-tidy] Ignore DISABLED_ in test suite name in google-avoid-underscore-in-googletest-name: Eugene.Zelenko, PiotrZSL, LegalizeAdulthood, aaron.ballman.
Wed, Mar 22, 11:57 AM · Restricted Project, Restricted Project
carlosgalvezp updated the diff for D146655: [clang-tidy] Ignore DISABLED_ in test suite name in google-avoid-underscore-in-googletest-name.

Rebase

Wed, Mar 22, 11:53 AM · Restricted Project, Restricted Project
carlosgalvezp committed rG7e5c48b8bd9f: [clang-tidy][NFC] Move avoid-underscore-in-googletest-name to google folder (authored by carlosgalvezp).
[clang-tidy][NFC] Move avoid-underscore-in-googletest-name to google folder
Wed, Mar 22, 11:52 AM · Restricted Project, Restricted Project
carlosgalvezp closed D146653: [clang-tidy][NFC] Move avoid-underscore-in-googletest-name to google folder.
Wed, Mar 22, 11:52 AM · Restricted Project, Restricted Project
carlosgalvezp requested review of D146655: [clang-tidy] Ignore DISABLED_ in test suite name in google-avoid-underscore-in-googletest-name.
Wed, Mar 22, 11:50 AM · Restricted Project, Restricted Project
carlosgalvezp added reviewers for D146653: [clang-tidy][NFC] Move avoid-underscore-in-googletest-name to google folder: Eugene.Zelenko, PiotrZSL, LegalizeAdulthood, aaron.ballman.
Wed, Mar 22, 11:41 AM · Restricted Project, Restricted Project
carlosgalvezp requested review of D146653: [clang-tidy][NFC] Move avoid-underscore-in-googletest-name to google folder.
Wed, Mar 22, 11:39 AM · Restricted Project, Restricted Project

Sun, Mar 19

carlosgalvezp added inline comments to D144522: [clang-tidy] Add readability-operators-representation check.
Sun, Mar 19, 12:30 AM · Restricted Project, Restricted Project

Sat, Mar 18

carlosgalvezp added inline comments to D145617: [clang-tidy] Add readability-avoid-unconditional-preprocessor-if check.
Sat, Mar 18, 11:05 AM · Restricted Project, Restricted Project
carlosgalvezp added inline comments to D144522: [clang-tidy] Add readability-operators-representation check.
Sat, Mar 18, 10:41 AM · Restricted Project, Restricted Project
carlosgalvezp accepted D144912: [clang-tidy] readability-identifier-naming: fix hungarian enum prefix in C.

Without this patch, the suggested fix in a C file by clang-tidy is iRevValid instead of rtRevValid.

Sat, Mar 18, 10:38 AM · Restricted Project, Restricted Project
carlosgalvezp added inline comments to D144522: [clang-tidy] Add readability-operators-representation check.
Sat, Mar 18, 10:02 AM · Restricted Project, Restricted Project
carlosgalvezp removed a reviewer for D145305: [clang-tidy] altera-id-dependent-backward-branch: do not mark all variables: carlosgalvezp.
Sat, Mar 18, 9:48 AM · Restricted Project, Restricted Project
carlosgalvezp added a comment to D145617: [clang-tidy] Add readability-avoid-unconditional-preprocessor-if check.

Looks good, minor comments!

Sat, Mar 18, 9:46 AM · Restricted Project, Restricted Project
carlosgalvezp accepted D145958: [clang-tidy] Fix minor bug in bugprone-too-small-loop-variable.
Sat, Mar 18, 3:10 AM · Restricted Project, Restricted Project
carlosgalvezp added a comment to D144912: [clang-tidy] readability-identifier-naming: fix hungarian enum prefix in C.

Looks good but I fail to understand what exactly the patch fixes, can you point me to an example in the tests? It would be easier to review if the NFC changes had been done in a separate patch.

Sat, Mar 18, 3:09 AM · Restricted Project, Restricted Project
carlosgalvezp accepted D129070: [clang-tidy] Fixed an issue in readability-identifier-naming not using options specified..
Sat, Mar 18, 3:02 AM · Restricted Project, Restricted Project

Sun, Mar 12

carlosgalvezp added a comment to D145312: [clang-tidy] Make readability-string-compare check use <string> header.

@PiotrZSL I believe you have landed some patches of this chain. Would you mind sharing how you do it? I'm not an expert in Phabricator and simply doing arc patch D145312 leads to cherry-pick conflicts, and when I solve them I don't end up having this patch as HEAD. With this knowledge I will be able to help out closing these patches!

arc patch --nobranch --skip-dependencies D145312
I will push them...

Sun, Mar 12, 7:01 AM · Restricted Project, Restricted Project
carlosgalvezp added a comment to D145312: [clang-tidy] Make readability-string-compare check use <string> header.

@mikecrowe I seems I cannot land this until it's rebased on top of main, would you be able to do that? Thanks!

Sun, Mar 12, 6:14 AM · Restricted Project, Restricted Project
carlosgalvezp added a comment to D145312: [clang-tidy] Make readability-string-compare check use <string> header.

@PiotrZSL I believe you have landed some patches of this chain. Would you mind sharing how you do it? I'm not an expert in Phabricator and simply doing arc patch D145312 leads to cherry-pick conflicts, and when I solve them I don't end up having this patch as HEAD. With this knowledge I will be able to help out closing these patches!

Sun, Mar 12, 5:53 AM · Restricted Project, Restricted Project

Sat, Mar 11

carlosgalvezp accepted D144206: [clang-tidy] Fix false-positive in cppcoreguidelines-slicing.

LGTM, thanks for the fix!

Sat, Mar 11, 9:21 AM · Restricted Project, Restricted Project
carlosgalvezp committed rGefda335bf5be: [clang-tidy] Make readability-container-data-pointer use <string> header (authored by mikecrowe).
[clang-tidy] Make readability-container-data-pointer use <string> header
Sat, Mar 11, 6:00 AM · Restricted Project, Restricted Project
carlosgalvezp closed D145310: [clang-tidy] Make readability-container-data-pointer use <string> header.
Sat, Mar 11, 6:00 AM · Restricted Project, Restricted Project
carlosgalvezp added a comment to D144206: [clang-tidy] Fix false-positive in cppcoreguidelines-slicing.

Looks good, just a small comment!

Sat, Mar 11, 5:57 AM · Restricted Project, Restricted Project

Tue, Mar 7

carlosgalvezp accepted D145477: run-clang-tidy.py should only search for the clang-apply-replacements if really needed.

LGTM, clang_apply_replacements_binary is only used in a if args.fix block.

Tue, Mar 7, 12:40 AM · Restricted Project, Restricted Project

Sun, Mar 5

carlosgalvezp added a comment to D145304: [clang-tidy] altera-id-dependent-backward-branch: refactor test.

Absolutely, give we few minutes. Maybe it conflicts with the previous revision that has already landed?

Sun, Mar 5, 10:23 AM · Restricted Project, Restricted Project
carlosgalvezp committed rG9fda83222431: [clang-tidy] altera-id-dependent-backward-branch: refactor test (authored by yeputons-gh).
[clang-tidy] altera-id-dependent-backward-branch: refactor test
Sun, Mar 5, 10:23 AM · Restricted Project, Restricted Project
carlosgalvezp closed D145304: [clang-tidy] altera-id-dependent-backward-branch: refactor test.
Sun, Mar 5, 10:23 AM · Restricted Project, Restricted Project
carlosgalvezp added a comment to D145304: [clang-tidy] altera-id-dependent-backward-branch: refactor test.

It seems I'm having trouble to download the patch with arcanist, would you mind rebasing on top of the main branch? Thanks!

Sun, Mar 5, 9:59 AM · Restricted Project, Restricted Project
carlosgalvezp accepted D145304: [clang-tidy] altera-id-dependent-backward-branch: refactor test.

LGTM!

Sun, Mar 5, 9:55 AM · Restricted Project, Restricted Project
carlosgalvezp added inline comments to D145312: [clang-tidy] Make readability-string-compare check use <string> header.
Sun, Mar 5, 9:37 AM · Restricted Project, Restricted Project
carlosgalvezp added a comment to D145313: [clang-tidy] Make readability-container-size-empty check using <string> header.

Could you upload the patch with full context? I believe you need to do something like git show HEAD -U999999 as per the guidelines. Otherwise arc diff should do the job automatically. Reason I ask is that I cannot see the new line numbers referred to by the note comments - Phab says "Context not available".

Sun, Mar 5, 9:35 AM · Restricted Project, Restricted Project
carlosgalvezp accepted D145310: [clang-tidy] Make readability-container-data-pointer use <string> header.

LGTM, would you mind rebasing to get the pre-merge jobs green?

Sun, Mar 5, 9:29 AM · Restricted Project, Restricted Project
carlosgalvezp added a reviewer for D145310: [clang-tidy] Make readability-container-data-pointer use <string> header: carlosgalvezp.
Sun, Mar 5, 9:18 AM · Restricted Project, Restricted Project
carlosgalvezp added a comment to D144216: [clang-tidy] Extract string header from redundant-string-cstr checker.

I will double check that this is true once my current build is complete.

Yes, it's true. I stuck a #error in clang-tools-extra/test/clang-tidy/checkers/Inputs/Headers/string.h and I saw the expected error from a file including <string>.

Awesome, thanks for checking, I wasn't aware we already had string.h. Then if we do have headers named the same as the standard headers, would it make sense to name this header cstring instead of string?

I think you mean rename string.h to cstring. (string clearly has to be just string if it's the standard C++ string header.)

A bit of searching in the existing checks shows that string.h is included by C checks (bugprone/signal-handler*.c) and also by checks that deliberately want string.h so they can suggest switching to cstring (modernize/deprecated-headers*) so it looks like it's necessary to keep string.h. If you wish, a cstring wrapper that just includes string.h could be created, but it really ought to put everything in namespace std too. (If so, I think this would probably be better done as a separate change.)

Sun, Mar 5, 9:17 AM · Restricted Project, Restricted Project
carlosgalvezp committed rGae25e2f19dec: [clang-tidy] Extract string header from redundant-string-cstr checker (authored by mikecrowe).
[clang-tidy] Extract string header from redundant-string-cstr checker
Sun, Mar 5, 9:16 AM · Restricted Project, Restricted Project
carlosgalvezp closed D144216: [clang-tidy] Extract string header from redundant-string-cstr checker.
Sun, Mar 5, 9:16 AM · Restricted Project, Restricted Project
carlosgalvezp added a comment to D144216: [clang-tidy] Extract string header from redundant-string-cstr checker.

I will double check that this is true once my current build is complete.

Yes, it's true. I stuck a #error in clang-tools-extra/test/clang-tidy/checkers/Inputs/Headers/string.h and I saw the expected error from a file including <string>.

Sun, Mar 5, 8:47 AM · Restricted Project, Restricted Project
carlosgalvezp committed rGc6d195b366c8: clang-tidy altera-id-dependent-backward-branch: print notes after warning (authored by yeputons-gh).
clang-tidy altera-id-dependent-backward-branch: print notes after warning
Sun, Mar 5, 8:07 AM · Restricted Project, Restricted Project
carlosgalvezp closed D145303: clang-tidy altera-id-dependent-backward-branch: print notes after warning.
Sun, Mar 5, 8:07 AM · Restricted Project, Restricted Project
carlosgalvezp added inline comments to D144216: [clang-tidy] Extract string header from redundant-string-cstr checker.
Sun, Mar 5, 8:05 AM · Restricted Project, Restricted Project
carlosgalvezp accepted D143375: clang-tidy: Count template constructors in modernize-use-default-member-init.

Thanks for the fix!

Sun, Mar 5, 7:43 AM · Restricted Project, Restricted Project
carlosgalvezp accepted D144216: [clang-tidy] Extract string header from redundant-string-cstr checker.

Sounds good, should we land this? If you don't have commit rights, please let us know Github name and email for attribution.

Sun, Mar 5, 7:39 AM · Restricted Project, Restricted Project
carlosgalvezp added a comment to D145303: clang-tidy altera-id-dependent-backward-branch: print notes after warning.

Thanks for the fix! Can you land the patch or would need that we do it for you? If so please provide Github name and email for attribution.

Sun, Mar 5, 7:36 AM · Restricted Project, Restricted Project
carlosgalvezp accepted D145303: clang-tidy altera-id-dependent-backward-branch: print notes after warning.
Sun, Mar 5, 7:34 AM · Restricted Project, Restricted Project

Feb 26 2023

carlosgalvezp accepted D142587: [clang-tidy] Improved too-small-loop-variable with bit-field support.

LGTM, thanks!

Feb 26 2023, 3:44 AM · Restricted Project, Restricted Project
carlosgalvezp added a comment to D143375: clang-tidy: Count template constructors in modernize-use-default-member-init.

Looks good, thanks! Please document change in the Release Notes.

Feb 26 2023, 12:41 AM · Restricted Project, Restricted Project
carlosgalvezp accepted D144594: [clang-tidy] Fix bugprone-copy-constructor-init documentation.

Great improvement, thanks!

Feb 26 2023, 12:37 AM · Restricted Project, Restricted Project
carlosgalvezp added a comment to D140760: [clang-tidy] Support begin/end free functions in modernize-loop-convert.

LGTM, minor comments. I'm not familiar with the implementation so I'm not very confident reviewing it, would be good to get some more expert eyes on it. Tests look solid!

Feb 26 2023, 12:33 AM · Restricted Project, Restricted Project
carlosgalvezp added a reviewer for D140760: [clang-tidy] Support begin/end free functions in modernize-loop-convert: carlosgalvezp.
Feb 26 2023, 12:24 AM · Restricted Project, Restricted Project
carlosgalvezp committed rG00a71cb47c36: [clang-tidy] readability-identifier-naming.HungarianNotation: rename… (authored by amurzeau).
[clang-tidy] readability-identifier-naming.HungarianNotation: rename…
Feb 26 2023, 12:23 AM · Restricted Project, Restricted Project
carlosgalvezp closed D144790: [clang-tidy] readability-identifier-naming.HungarianNotation: rename CharPrinter to CharPointer.
Feb 26 2023, 12:23 AM · Restricted Project, Restricted Project
carlosgalvezp accepted D143851: [clang-tidy] Tweak 'rule of 3/5' checks to allow defaulting a destructor outside the class..

LGTM, thanks for the contribution! Do you have commit rights or would you like that we land it for you? If so, please provide name and email for attribution.

Feb 26 2023, 12:16 AM · Restricted Project, Restricted Project

Feb 25 2023

carlosgalvezp added a comment to D142587: [clang-tidy] Improved too-small-loop-variable with bit-field support.

@carlosgalvezp: Sorry, there are too much Clang specifics in this patch, so I could not be reviewer.

Feb 25 2023, 11:43 PM · Restricted Project, Restricted Project
carlosgalvezp accepted D144790: [clang-tidy] readability-identifier-naming.HungarianNotation: rename CharPrinter to CharPointer.

Good catch, thanks for fixing!

Feb 25 2023, 11:42 PM · Restricted Project, Restricted Project
carlosgalvezp added a reviewer for D142587: [clang-tidy] Improved too-small-loop-variable with bit-field support: Eugene.Zelenko.
Feb 25 2023, 12:16 PM · Restricted Project, Restricted Project
carlosgalvezp added a comment to D142587: [clang-tidy] Improved too-small-loop-variable with bit-field support.

Thanks for the fix! I have some suggestions for improved readability.

Feb 25 2023, 12:15 PM · Restricted Project, Restricted Project
carlosgalvezp accepted D144217: [clang-tidy] Fix false-positive in readability-container-size-empty.
Feb 25 2023, 9:36 AM · Restricted Project, Restricted Project
carlosgalvezp added a comment to D144217: [clang-tidy] Fix false-positive in readability-container-size-empty.

Thanks for the fix! Looks good, have a couple minor comments.

Feb 25 2023, 7:49 AM · Restricted Project, Restricted Project

Feb 24 2023

carlosgalvezp added reviewers for D144709: [clang-format] Improve QualifierAlignment: owenpan, rymiel.
Feb 24 2023, 2:39 AM · Restricted Project, Restricted Project, Restricted Project