Skip to content

Commit 64141b2

Browse files
committed
CPP: QLDoc cleanup.
1 parent aba73f4 commit 64141b2

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

cpp/ql/src/semmle/code/cpp/Struct.qll

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ class NestedStruct extends Struct {
3030
this.isMember()
3131
}
3232

33-
/** Whether this member is private. */
33+
/** Holds if this member is private. */
3434
predicate isPrivate() { this.hasSpecifier("private") }
3535

36-
/** Whether this member is protected. */
36+
/** Holds if this member is protected. */
3737
predicate isProtected() { this.hasSpecifier("protected") }
3838

39-
/** Whether this member is public. */
39+
/** Holds if this member is public. */
4040
predicate isPublic() { this.hasSpecifier("public") }
4141

4242
}

cpp/ql/src/semmle/code/cpp/Union.qll

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ class NestedUnion extends Union {
3131
this.isMember()
3232
}
3333

34-
/** Whether this member is private. */
34+
/** Holds if this member is private. */
3535
predicate isPrivate() { this.hasSpecifier("private") }
3636

37-
/** Whether this member is protected. */
37+
/** Holds if this member is protected. */
3838
predicate isProtected() { this.hasSpecifier("protected") }
3939

40-
/** Whether this member is public. */
40+
/** Holds if this member is public. */
4141
predicate isPublic() { this.hasSpecifier("public") }
4242

4343
}

0 commit comments

Comments
 (0)