Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
clang-tools-extra/clang-tidy/cppcoreguidelines/InitVariablesCheck.cpp | ||
---|---|---|
37 | No point checking if its a template definition or not. According to the standard it's not possible to have a for range statement where the loop variable isn't initialized. |
Comment Actions
Unit tests: pass. 62371 tests passed, 0 failed and 839 were skipped.
clang-tidy: pass.
clang-format: pass.
Build artifacts: diff.json, clang-tidy.txt, clang-format.patch, CMakeCache.txt, console-log.txt, test-results.xml
Pre-merge checks is in beta. Report issue. Please join beta or enable it for your project.
No point checking if its a template definition or not. According to the standard it's not possible to have a for range statement where the loop variable isn't initialized.