Update cpp/ql/lib/semmle/code/cpp/ir/implementation/EdgeKind.qll

Co-authored-by: Jeroen Ketema <93738568+jketema@users.noreply.github.com>
This commit is contained in:
Ben Rodes
2024-12-05 10:49:33 -05:00
committed by GitHub
parent 6cbaa73d58
commit 3115833847

View File

@@ -58,10 +58,8 @@ abstract private class ExceptionEdgeImpl extends EdgeKindImpl { }
* An "exception" edge, representing the successor of an instruction when that
* instruction's evaluation throws an exception.
*
* Exception edges are expclitly sublcassed to
* `CppExceptionEdge` and `SehExceptionEdge` only.
* Further sublcasses, if required, should be added privately
* here for IR efficiency.
* Exception edges are expclitly sublcassed to `CppExceptionEdge` and `SehExceptionEdge`
* only. Further sublcasses, if required, should be added privately here for IR efficiency.
*/
final class ExceptionEdge = ExceptionEdgeImpl;