This is how I applied my clang-tidy check (see
https://reviews.llvm.org/D80531) in order to remove
DISALLOW_COPY_AND_ASSIGN and have deleted copy ctors and deleted
assignment operators instead.
grep DISALLOW_COPY_AND_ASSIGN /opt/notnfs/kkleine/llvm/lldb -r -l | sort | uniq > files for i in $(cat files); do clang-tidy \ --checks="-*,modernize-replace-disallow-copy-and-assign-macro" \ --format-style=LLVM \ --header-filter=.* \ --fix \ -fix-errors \ $i; done