Skip to content

Commit 43520b8

Browse files
committed
C++/C#: Fix copy/pasted qldoc
1 parent 1fa1bd5 commit 43520b8

File tree

5 files changed

+5
-10
lines changed

5 files changed

+5
-10
lines changed

cpp/ql/src/semmle/code/cpp/ir/implementation/aliased_ssa/IRVariable.qll

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,8 +224,7 @@ class IREllipsisVariable extends IRTempVariable {
224224
}
225225

226226
/**
227-
* A temporary variable generated to hold the contents of all arguments passed to the `...` of a
228-
* function that accepts a variable number of arguments.
227+
* A temporary variable generated to hold the `this` pointer.
229228
*/
230229
class IRThisVariable extends IRTempVariable {
231230
IRThisVariable() { tag = ThisTempVar() }

cpp/ql/src/semmle/code/cpp/ir/implementation/raw/IRVariable.qll

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,8 +224,7 @@ class IREllipsisVariable extends IRTempVariable {
224224
}
225225

226226
/**
227-
* A temporary variable generated to hold the contents of all arguments passed to the `...` of a
228-
* function that accepts a variable number of arguments.
227+
* A temporary variable generated to hold the `this` pointer.
229228
*/
230229
class IRThisVariable extends IRTempVariable {
231230
IRThisVariable() { tag = ThisTempVar() }

cpp/ql/src/semmle/code/cpp/ir/implementation/unaliased_ssa/IRVariable.qll

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,8 +224,7 @@ class IREllipsisVariable extends IRTempVariable {
224224
}
225225

226226
/**
227-
* A temporary variable generated to hold the contents of all arguments passed to the `...` of a
228-
* function that accepts a variable number of arguments.
227+
* A temporary variable generated to hold the `this` pointer.
229228
*/
230229
class IRThisVariable extends IRTempVariable {
231230
IRThisVariable() { tag = ThisTempVar() }

csharp/ql/src/semmle/code/csharp/ir/implementation/raw/IRVariable.qll

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,8 +224,7 @@ class IREllipsisVariable extends IRTempVariable {
224224
}
225225

226226
/**
227-
* A temporary variable generated to hold the contents of all arguments passed to the `...` of a
228-
* function that accepts a variable number of arguments.
227+
* A temporary variable generated to hold the `this` pointer.
229228
*/
230229
class IRThisVariable extends IRTempVariable {
231230
IRThisVariable() { tag = ThisTempVar() }

csharp/ql/src/semmle/code/csharp/ir/implementation/unaliased_ssa/IRVariable.qll

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,8 +224,7 @@ class IREllipsisVariable extends IRTempVariable {
224224
}
225225

226226
/**
227-
* A temporary variable generated to hold the contents of all arguments passed to the `...` of a
228-
* function that accepts a variable number of arguments.
227+
* A temporary variable generated to hold the `this` pointer.
229228
*/
230229
class IRThisVariable extends IRTempVariable {
231230
IRThisVariable() { tag = ThisTempVar() }

0 commit comments

Comments
 (0)