Skip to content

Commit d924247

Browse files
author
Owen Jones
committed
Add in empty lines after headings
I don't think this changes the output, it just makes the source easier to read
1 parent 3b74238 commit d924247

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

doc/architectural/data-structures-core-structures-and-ast.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
\author Martin Brain, Peter Schrammel, Owen Jones
55

66
## Strings: dstringt, the string_container and the ID_* ##
7+
78
Within cbmc, strings are represented using `irep_idt`. By default this is
89
typedefed to \ref dstringt, which stores a string as an index into a large
910
static table of strings. This makes it easy to compare if two `irep_idt`s
@@ -22,6 +23,7 @@ first encountered, and the same index is used for all instances.
2223
See documentation at \ref dstringt.
2324

2425
## irept: a 4-triple (data, named-sub, comments, sub) ##
26+
2527
See documentation at \ref irept.
2628

2729
As that documentation says, `irept`s are generic tree nodes. You should
@@ -41,6 +43,7 @@ To be documented.
4143
To be documented.
4244

4345
## exprt ##
46+
4447
\ref exprt is the class to represent an expression. It inherits from \ref irept,
4548
and the only things it adds to it are that every \ref exprt has a named sub
4649
containing its type and everything in the sub of an \ref exprt is again an
@@ -60,6 +63,7 @@ expression then you have to check its `id()` (or use
6063
`can_cast_expr<minus_exprt>`).
6164

6265
## codet ##
66+
6367
\ref exprt represents expressions and \ref codet represents statements. \ref codet
6468
inherits from \ref exprt, so all `codet`s are `exprt`s, with `id()` `ID_code`.
6569
Many different kinds of statements inherit from \ref codet, and they are

0 commit comments

Comments
 (0)