Skip to content

Commit 386e8e8

Browse files
authored
Merge pull request #2645 from geoffw0/typo
CPP: Fix typo.
2 parents fb90c2b + 6743d6d commit 386e8e8

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -991,7 +991,7 @@ class InheritanceConversionInstruction extends UnaryInstruction {
991991

992992
/**
993993
* Represents an instruction that converts from the address of a derived class
994-
* to the address of a direct non-virtual base class.
994+
* to the address of a base class.
995995
*/
996996
class ConvertToBaseInstruction extends InheritanceConversionInstruction {
997997
ConvertToBaseInstruction() { getOpcode() instanceof ConvertToBaseOpcode }

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -991,7 +991,7 @@ class InheritanceConversionInstruction extends UnaryInstruction {
991991

992992
/**
993993
* Represents an instruction that converts from the address of a derived class
994-
* to the address of a direct non-virtual base class.
994+
* to the address of a base class.
995995
*/
996996
class ConvertToBaseInstruction extends InheritanceConversionInstruction {
997997
ConvertToBaseInstruction() { getOpcode() instanceof ConvertToBaseOpcode }

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -991,7 +991,7 @@ class InheritanceConversionInstruction extends UnaryInstruction {
991991

992992
/**
993993
* Represents an instruction that converts from the address of a derived class
994-
* to the address of a direct non-virtual base class.
994+
* to the address of a base class.
995995
*/
996996
class ConvertToBaseInstruction extends InheritanceConversionInstruction {
997997
ConvertToBaseInstruction() { getOpcode() instanceof ConvertToBaseOpcode }

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -991,7 +991,7 @@ class InheritanceConversionInstruction extends UnaryInstruction {
991991

992992
/**
993993
* Represents an instruction that converts from the address of a derived class
994-
* to the address of a direct non-virtual base class.
994+
* to the address of a base class.
995995
*/
996996
class ConvertToBaseInstruction extends InheritanceConversionInstruction {
997997
ConvertToBaseInstruction() { getOpcode() instanceof ConvertToBaseOpcode }

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -991,7 +991,7 @@ class InheritanceConversionInstruction extends UnaryInstruction {
991991

992992
/**
993993
* Represents an instruction that converts from the address of a derived class
994-
* to the address of a direct non-virtual base class.
994+
* to the address of a base class.
995995
*/
996996
class ConvertToBaseInstruction extends InheritanceConversionInstruction {
997997
ConvertToBaseInstruction() { getOpcode() instanceof ConvertToBaseOpcode }

0 commit comments

Comments
 (0)