[clang-tools-extra] [DRAFT][clang-tidy] modernize-replace-with-stdcopy (PR #113046)

2025-02-23 Thread Kuba Migdał via cfe-commits
https://github.com/kidq330 closed https://github.com/llvm/llvm-project/pull/113046 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang-tools-extra] [clang-tidy][modernize] Replace memmove/memcpy with std::copy (PR #122940)

2025-02-08 Thread Kuba Migdał via cfe-commits
kidq330 wrote: @kadircet I ran the script but it seems that my check was one of the few that did not get updated (see last commit in PR), is this normal? Here's the cmake command for the build I used: ``` cmake -G Ninja -S llvm -B static -DBUILD_SHARED_LIBS=false -DLLVM_ENABLE_PROJECTS="clang;

[clang-tools-extra] [clang-tidy][modernize] Replace memmove/memcpy with std::copy (PR #122940)

2025-01-15 Thread Kuba Migdał via cfe-commits
kidq330 wrote: @kadircet Does the file need further changes from what I've already added? https://github.com/llvm/llvm-project/pull/122940 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commi

[clang-tools-extra] [DRAFT][clang-tidy] modernize-replace-with-stdcopy (PR #113046)

2024-10-19 Thread Kuba Migdał via cfe-commits
https://github.com/kidq330 edited https://github.com/llvm/llvm-project/pull/113046 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang-tools-extra] [DRAFT][clang-tidy] modernize-replace-with-stdcopy (PR #113046)

2024-10-19 Thread Kuba Migdał via cfe-commits
https://github.com/kidq330 created https://github.com/llvm/llvm-project/pull/113046 None From b2753fc81792cf5c3a95eedbf349bac2e461e883 Mon Sep 17 00:00:00 2001 From: Giovanni Martins Date: Wed, 6 Dec 2023 11:26:53 -0300 Subject: [PATCH 1/3] replace memcpy with std::copy on clang-tidy removed