[PATCH] D88700: [clang-tidy] modernize-use-trailing-return-type fix #44206

Bernhard Manfred Gruber via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Sat Oct 3 08:05:57 PDT 2020


bernhardmgruber added inline comments.


================
Comment at: clang-tools-extra/clang-tidy/modernize/UseTrailingReturnTypeCheck.cpp:72
+                TL.getAs<TypedefTypeLoc>().getTypePtr()->getDecl()->getName()))
+          return false;
       default:
----------------
There is a `break;` missing after this line. The build bot just told me. It should not change the meaning of the program though.

Can someone add that for me or do I need to upload another diff? Thank you!


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D88700



More information about the cfe-commits mailing list