Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
LGTM with a testing request.
clang-tools-extra/test/clang-tidy/checkers/modernize-use-default-member-init.cpp | ||
---|---|---|
436 | Can you add a test where the value is elided but braced init is still used: struct PR45363 { PR45363() : m_i{} {} // This should still warn int m_i; }; |
Can you add a test where the value is elided but braced init is still used: