parent
da1e2b22be
commit
938517b80a
|
@ -581,7 +581,7 @@ void SymbolDatabase::createSymbolDatabaseFindAllScopes()
|
||||||
}
|
}
|
||||||
|
|
||||||
// friend class declaration?
|
// friend class declaration?
|
||||||
else if (mTokenizer->isCPP() && tok->isKeyword() && Token::Match(tok, "friend class| ::| %any% ;|::")) {
|
else if (mTokenizer->isCPP() && tok->isKeyword() && Token::Match(tok, "friend class|struct| ::| %any% ;|::")) {
|
||||||
Type::FriendInfo friendInfo;
|
Type::FriendInfo friendInfo;
|
||||||
|
|
||||||
// save the name start
|
// save the name start
|
||||||
|
|
|
@ -583,6 +583,20 @@ private:
|
||||||
" void f() { }\n"
|
" void f() { }\n"
|
||||||
"};");
|
"};");
|
||||||
ASSERT_EQUALS("[test.cpp:5]: (style) Unused private function: 'Foo::f'\n", errout.str());
|
ASSERT_EQUALS("[test.cpp:5]: (style) Unused private function: 'Foo::f'\n", errout.str());
|
||||||
|
|
||||||
|
check("struct F;\n" // #10265
|
||||||
|
"struct S {\n"
|
||||||
|
" int i{};\n"
|
||||||
|
" friend struct F;\n"
|
||||||
|
"private:\n"
|
||||||
|
" int f() const { return i; }\n"
|
||||||
|
"};\n"
|
||||||
|
"struct F {\n"
|
||||||
|
" bool operator()(const S& lhs, const S& rhs) const {\n"
|
||||||
|
" return lhs.f() < rhs.f();\n"
|
||||||
|
" }\n"
|
||||||
|
"};");
|
||||||
|
ASSERT_EQUALS("", errout.str());
|
||||||
}
|
}
|
||||||
|
|
||||||
void borland1() {
|
void borland1() {
|
||||||
|
|
Loading…
Reference in New Issue