[PATCH] D141569: [clang-tidy] Implement CppCoreGuideline F.18

Piotr Zegar via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Mon Feb 20 07:01:12 PST 2023


PiotrZSL added a comment.

Other false-positive that I still see:

  void SomeClass::someVirtualFunction(SomeType&&)
  {
  BOOST_THROW_EXCEPTION(std::runtime_error("Unexpected call ...."));
  }

It shouldnt warn about virtual functions with unnamed parameter, because this can be required by interface.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D141569



More information about the cfe-commits mailing list