readability-delete-null-pointer

检查 if 语句,其中检查了指针的存在,然后删除了指针。 此检查是不必要的,因为删除空指针不会产生任何效果。

int *p;
if (p)
  delete p;