From fd88289e46780927101790ef11ca30946bd1802e Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Thu, 11 Jun 2020 16:50:23 +0100 Subject: [PATCH] C++: Fix reference to `Block` We don't call it `BlockStmt`. --- cpp/ql/src/semmle/code/cpp/stmts/Stmt.qll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/ql/src/semmle/code/cpp/stmts/Stmt.qll b/cpp/ql/src/semmle/code/cpp/stmts/Stmt.qll index 1640bee0f35d..989d36a0a9d2 100644 --- a/cpp/ql/src/semmle/code/cpp/stmts/Stmt.qll +++ b/cpp/ql/src/semmle/code/cpp/stmts/Stmt.qll @@ -1455,7 +1455,7 @@ class SwitchStmt extends ConditionalStmt, @stmt_switch { /** * Gets the body statement of this 'switch' statement. * - * In almost all cases the result will be a `BlockStmt`, but there are + * In almost all cases the result will be a `Block`, but there are * other syntactically valid constructions. * * For example, for