lvc / abi-compliance-checker

A tool for checking backward API/ABI compatibility of a C/C++ library
https://lvc.github.io/abi-compliance-checker/
GNU Lesser General Public License v2.1
621 stars 76 forks source link

Abi not able to detect "= delete;" #100

Open AllenDrake2016 opened 4 years ago

AllenDrake2016 commented 4 years ago

Hi, I wonder if this issue has been solved or not.

If I have the following line in my code: ClassName& operator=(const ClassName&) = delete;

abi won't be able to detect the operator was being deleted. but it will treat it as new symbol "operator=" was being created and was assigned "delete" as its value.

Thanks.