Searched refs:ExistingInt (Results 1 – 1 of 1) sorted by relevance
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/modernize/ |
H A D | use-default-member-init.cpp | 310 struct ExistingInt { struct 311 ExistingInt(short) : e1(), e2{}, e3(), e4(), e5(), e6() {} in ExistingInt() argument 315 ExistingInt(int) : e1(0), e2{0}, e3(0), e4(0), e5(0), e6(0) {} in ExistingInt() argument 319 ExistingInt(long) : e1(5), e2{5}, e3(5), e4(5), e5(5), e6(5) {} in ExistingInt() function 324 ExistingInt(char) : e1(-5), e2{-5}, e3(-5), e4(-5), e5(-5), e6(-5) {} in ExistingInt() argument
|