We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 060f3f0 commit 385b07bCopy full SHA for 385b07b
clang-tools-extra/clang-doc/Serialize.cpp
@@ -261,8 +261,7 @@ static bool isPublic(const clang::AccessSpecifier AS,
261
const clang::Linkage Link) {
262
if (AS == clang::AccessSpecifier::AS_private)
263
return false;
264
- else if ((Link == clang::Linkage::Module) ||
265
- (Link == clang::Linkage::External))
+ if ((Link == clang::Linkage::Module) || (Link == clang::Linkage::External))
266
return true;
267
return false; // otherwise, linkage is some form of internal linkage
268
}
0 commit comments