[PATCH] D20052: Add new ASTMatcher that matches dynamic exception specifications.
Aaron Ballman via cfe-commits
cfe-commits at lists.llvm.org
Mon May 16 08:50:28 PDT 2016
aaron.ballman added a comment.
In http://reviews.llvm.org/D20052#430903, @hintonda wrote:
> Great, unless() was what I was missing. I'll refactor along those lines.
>
> As for what I'm trying to achieve, I want a set containing "throw()" and another set containing "throw(something)". If there's a cleaner way to achieve that with an existing matcher, please let me know.
`allOf(hasDynamicExceptionSpecification(), isNoThrow())` gets you "throw()" and `allOf(hasDynamicExceptionSpecification(), unless(isNoThrow())` gets you "throw(something)", doesn't it?
http://reviews.llvm.org/D20052
More information about the cfe-commits
mailing list