Skip to content

Commit e58df6f

Browse files
smowtontautschnig
authored andcommitted
Fix Doxygen warnings
1 parent b49820b commit e58df6f

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

src/cpp/cpp_constructor.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Author: Daniel Kroening, [email protected]
1818

1919
#include "cpp_util.h"
2020

21+
/// \param source_location: source location for generated code
2122
/// \param object: non-typechecked object
2223
/// \param operands: non-typechecked operands
2324
/// \return typechecked code

src/util/graph.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -607,7 +607,7 @@ void grapht<N>::make_chordal()
607607
}
608608

609609
/// Find a topological order of the nodes if graph is DAG, return empty list for
610-
/// non-DAG or empty graph. Uses Kahn's algorithm running in O(#edges+#nodes).
610+
/// non-DAG or empty graph. Uses Kahn's algorithm running in O(n_edges+n_nodes).
611611
template<class N>
612612
std::list<typename grapht<N>::node_indext> grapht<N>::topsort() const
613613
{

src/util/invariant.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ void report_exception_to_stderr(const invariant_failedt &);
142142
/// Takes a backtrace, gives it to the reason structure, then aborts, printing
143143
/// reason.what() (which therefore includes the backtrace).
144144
/// In future this may throw `reason` instead of aborting.
145-
/// \param ET : (template type parameter), type of exception to construct
145+
/// Template parameter ET: type of exception to construct
146146
/// \param file : C string giving the name of the file.
147147
/// \param function : C string giving the name of the function.
148148
/// \param line : The line number of the invariant

0 commit comments

Comments
 (0)