"git@developer.sourcefind.cn:renzhc/diffusers_dcu.git" did not exist on "92fe689f06bcec27c4f48cb90574c2b9c42c643b"
Commit 86100e38 authored by Moto Hira's avatar Moto Hira Committed by Facebook GitHub Bot
Browse files

Disable clang-tidy modernize-use-trailing-return-type (#2337)

Summary:
Disable clang-tidy's `modernize-use-trailing-return-type` suggestion.

Trailing return type has no impact on performance.
The lint warning shows up everywhere, and it's nothing but noise.

Pull Request resolved: https://github.com/pytorch/audio/pull/2337

Reviewed By: hwangjeff

Differential Revision: D35635718

Pulled By: mthrok

fbshipit-source-id: beb2d3ec657f829493e08b2c159f215053b0e784
parent be243c59
...@@ -27,6 +27,7 @@ modernize-*, ...@@ -27,6 +27,7 @@ modernize-*,
-modernize-return-braced-init-list, -modernize-return-braced-init-list,
-modernize-use-auto, -modernize-use-auto,
-modernize-use-default-member-init, -modernize-use-default-member-init,
-modernize-use-trailing-return-type,
-modernize-use-using, -modernize-use-using,
performance-unnecessary-value-param, performance-unnecessary-value-param,
' '
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment