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.
2 parents 8ff8b3e + 09e13ca commit cb39525Copy full SHA for cb39525
cpp/ql/src/semmle/code/cpp/MemberFunction.qll
@@ -72,10 +72,10 @@ class MemberFunction extends Function {
72
}
73
74
/**
75
- * Gets the type of the `this` parameter associated with this member function, if any. Typically,
76
- * this will be a `PointerType`, possibly with `const` and/or `volatile` qualifiers.
+ * Gets the type of the `this` parameter associated with this member function, if any. The type
+ * may have `const` and/or `volatile` qualifiers, matching the function declaration.
77
*/
78
- Type getTypeOfThis() {
+ PointerType getTypeOfThis() {
79
member_function_this_type(underlyingElement(this), unresolveElement(result))
80
81
0 commit comments