balazske added inline comments.

================
Comment at: 
clang-tools-extra/docs/clang-tidy/checks/bugprone-unhandled-exception-at-new.rst:7
+Finds calls to ``new`` that may throw ``std::bad_alloc`` exception and
+the exception handler is missing.
+
----------------
aaron.ballman wrote:
> This isn't quite accurate -- if the exception handler is missing or doesn't 
> handle either `std::bad_alloc` or `std::exception`.
I restructure the text, but do not want to mention `std::exception` because it 
is a base class (handling of `std::exception` means handling of 
`std::bad_alloc`), and then why not mention generic exception handler 
(`catch(...)`). I think this text is for introduction only, should not be 
totally precise.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D97196/new/

https://reviews.llvm.org/D97196

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to