We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e890aba commit beada95Copy full SHA for beada95
cpp/ql/src/semmle/code/cpp/stmts/Block.qll
@@ -4,9 +4,13 @@ import semmle.code.cpp.stmts.Stmt
4
/**
5
* A C/C++ block statement.
6
*
7
- * For example,
+ * For example, the block from `{` to `}` in the following code:
8
* ```
9
- * { int a; int b = 1; a = b; }
+ * {
10
+ * int a;
11
+ * int b = 1;
12
+ * a = b;
13
+ * }
14
15
*/
16
class Block extends Stmt, @stmt_block {
0 commit comments