From 688250439711a09d828c4a21df2352948438b289 Mon Sep 17 00:00:00 2001 From: Anders Schack-Mulligen Date: Wed, 25 Oct 2023 14:31:49 +0200 Subject: [PATCH] C#: Fix compilation --- .../csharp/dataflow/internal/rangeanalysis/BoundSpecific.qll | 2 ++ 1 file changed, 2 insertions(+) diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/BoundSpecific.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/BoundSpecific.qll index 3515f2f96c82..3885c11afd14 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/BoundSpecific.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/BoundSpecific.qll @@ -12,6 +12,8 @@ class SsaVariable = SU::SsaVariable; class Expr = CS::ControlFlow::Nodes::ExprNode; +class Location = CS::Location; + class IntegralType = CS::IntegralType; class ConstantIntegerExpr = CU::ConstantIntegerExpr;