[PATCH] D33537: [clang-tidy] Exception Escape Checker

Balogh, Ádám via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Thu Nov 23 06:04:29 PST 2017


baloghadamsoftware added a comment.

In https://reviews.llvm.org/D33537#902242, @JonasToth wrote:

>




> Will this check find stuff like this (or is it part of the frontend)
> 
>   int throwing() {
>       throw int(42);
>   }
>   
>   int not_throwing() noexcept {
>       throwing();
>   }

Yes, see lines 171-193 of the test file.


https://reviews.llvm.org/D33537





More information about the cfe-commits mailing list