CPP: QLDoc cleanup.

This commit is contained in:
Geoffrey White
2019-01-10 18:17:55 +00:00
parent aba73f4aac
commit 64141b2817
2 changed files with 6 additions and 6 deletions

View File

@@ -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") }
}

View File

@@ -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") }
}