Skip to content

Commit 7fa6793

Browse files
committedJan 13, 2025
Address Doxygen warnings
Doxygen 1.9.8 detects more problems than earlier versions did.
1 parent 5d159d7 commit 7fa6793

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
lines changed
 

‎doc/API/util/piped_process.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
\page piped-process `src/util/piped_process.{cpp, h}`
1+
\page piped-process The `piped_process` API
22

3-
To utilise the `piped_process` API for interprocess communication with any binary:
3+
To utilise the `piped_process` API (`src/util/piped_process.{cpp, h}`) for
4+
interprocess communication with any binary:
45

56
* You need to initialise it by calling the construct `piped_processt("binary with args")`.
67
* If IPC fails before child process creation, you will get a `system_exceptiont`.

‎doc/architectural/front-page.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ license</a>.
5454
Overview of Documentation
5555
=======
5656

57-
### For users:
57+
## For users:
5858

5959
* The [CPROVER User Manual](http://www.cprover.org/cprover-manual/) details the
6060
capabilities of CBMC and describes how to install and use these tools. It
@@ -68,7 +68,7 @@ you can access it <a href=
6868
* \subpage memory-bounds-checking
6969
* \subpage satabs
7070

71-
### For contributors:
71+
## For contributors:
7272

7373
The following pages attempt to provide the information that a developer needs to
7474
work on CBMC, in a sensible order. In many cases they link to the appropriate

‎doc/architectural/goto-program-transformations.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ This pass adds failed symbols to the symbol table. See
176176
`src/pointer-analysis/add_failed_symbols.h` for details. The implementation of
177177
this pass is called via \ref add_failed_symbols(symbol_table_baset &) . The
178178
purpose of failed symbols is explained in the documentation of the function \ref
179-
goto_symext::dereference(exprt &, statet &, bool)
179+
goto_symext::dereference(exprt &, goto_symex_statet &, bool)
180180

181181
<em>Predecessor pass is \ref update-transform or the optional \ref
182182
nondet-transform if it is being used.</em>

‎doc/assets/xml_spec.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ The path from the input C code to XML trace goes through the following
475475
steps:\
476476
`C``GOTO``SSA``GOTO Trace``XML Trace`
477477

478-
#### SSA to GOTO Trace
478+
### SSA to GOTO Trace
479479

480480
SSA steps are sorted by clocks and the following steps are skipped: PHI,
481481
GUARD assignments; shared-read, shared-write, constraint, spawn,

‎src/goto-instrument/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ from `main.*`, `parseoptions.*` and the `Makefile` and use these as the
2727
skeleton of their application. The `doit()` method in `parseoptions.cpp`
2828
is the preferred location for the top level control for the program.
2929

30-
### Main usage ###
30+
## Main usage ##
3131

3232
For most of the transformations, `goto-instrument` takes one or two
3333
arguments and any number of options. The two file arguments are
@@ -40,7 +40,7 @@ option output, with no indication of what has gone wrong. Some of the options
4040
can work with just an input file and not output file. For more specific
4141
examples, take a look at the demonstrations below:
4242

43-
### Function pointer removal ###
43+
## Function pointer removal ##
4444

4545
As an example of a transformation pass being run, imagine you have a file
4646
called `function_pointers.c` with the following content:
@@ -163,7 +163,7 @@ You can now see that the function pointer (indirect) call (resulting from
163163
the array indexing of the array containing the function pointers)
164164
has now been substituted by direct, conditional calls.
165165

166-
### Call Graph ###
166+
## Call Graph ##
167167

168168
This is an example of a command line flag that requires only one argument,
169169
specifying the input file.

0 commit comments

Comments
 (0)