Closed user202729 closed 4 years ago
Example run:
$ cat test.cpp struct nope {}; template<typename T> nope swap(T &, T &) = delete; int main(){} $ clang_delta --transformation=remove-unused-function --counter=1 test.cpp struct nope {}; = delete; int main(){}
Fixed in commit ce947d67. Thank you for reporting the issue, @user202729 !
Example run: