mirror of
https://github.com/github/codeql.git
synced 2026-04-27 09:45:15 +02:00
CPP: QLDoc cleanup.
This commit is contained in:
@@ -30,13 +30,13 @@ class NestedStruct extends Struct {
|
||||
this.isMember()
|
||||
}
|
||||
|
||||
/** Whether this member is private. */
|
||||
/** Holds if this member is private. */
|
||||
predicate isPrivate() { this.hasSpecifier("private") }
|
||||
|
||||
/** Whether this member is protected. */
|
||||
/** Holds if this member is protected. */
|
||||
predicate isProtected() { this.hasSpecifier("protected") }
|
||||
|
||||
/** Whether this member is public. */
|
||||
/** Holds if this member is public. */
|
||||
predicate isPublic() { this.hasSpecifier("public") }
|
||||
|
||||
}
|
||||
|
||||
@@ -31,13 +31,13 @@ class NestedUnion extends Union {
|
||||
this.isMember()
|
||||
}
|
||||
|
||||
/** Whether this member is private. */
|
||||
/** Holds if this member is private. */
|
||||
predicate isPrivate() { this.hasSpecifier("private") }
|
||||
|
||||
/** Whether this member is protected. */
|
||||
/** Holds if this member is protected. */
|
||||
predicate isProtected() { this.hasSpecifier("protected") }
|
||||
|
||||
/** Whether this member is public. */
|
||||
/** Holds if this member is public. */
|
||||
predicate isPublic() { this.hasSpecifier("public") }
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user