Skip to content

Commit c50f40d

Browse files
Remove old doxygen module directives from header files
1 parent c1f9e34 commit c50f40d

File tree

6 files changed

+2
-15
lines changed

6 files changed

+2
-15
lines changed

src/ansi-c/ansi_c_language.h

-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ Author: Daniel Kroening, [email protected]
1010
#ifndef CPROVER_ANSI_C_ANSI_C_LANGUAGE_H
1111
#define CPROVER_ANSI_C_ANSI_C_LANGUAGE_H
1212

13-
/*! \defgroup gr_ansi_c ANSI-C front-end */
14-
1513
#include <memory>
1614

1715
#include <util/make_unique.h>

src/cpp/cpp_language.h

-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ Author: Daniel Kroening, [email protected]
1212
#ifndef CPROVER_CPP_CPP_LANGUAGE_H
1313
#define CPROVER_CPP_CPP_LANGUAGE_H
1414

15-
/*! \defgroup gr_cpp C++ front-end */
16-
1715
#include <memory>
1816

1917
#include <util/make_unique.h> // unique_ptr

src/util/std_expr.h

+1-5
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,6 @@ Author: Daniel Kroening, [email protected]
2222
#include "expr_cast.h"
2323

2424

25-
/*! \defgroup gr_std_expr Conversion to specific expressions
26-
* Conversion to subclasses of @ref exprt
27-
*/
28-
2925
/*! \brief A transition system, consisting of
3026
state invariant, initial state predicate,
3127
and transition predicate
@@ -56,7 +52,7 @@ class transt:public exprt
5652
* \param expr Source expression
5753
* \return Object of type \ref transt
5854
*
59-
* \ingroup gr_std_expr
55+
6056
*/
6157
inline const transt &to_trans_expr(const exprt &expr)
6258
{

src/util/std_types.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Author: Daniel Kroening, [email protected]
2525

2626
class constant_exprt;
2727

28-
/*! \defgroup gr_std_types Conversion to specific types
28+
/*!
2929
* Conversion to subclasses of @ref typet
3030
*/
3131

src/util/symbol.h

-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@ Author: Daniel Kroening, [email protected]
1717
* \date Sun Jul 31 21:54:44 BST 2011
1818
*/
1919

20-
/*! \defgroup gr_symbol_table Symbol Table
21-
*/
22-
2320
#include <iosfwd>
2421

2522
#include "expr.h"

src/util/symbol_table_base.h

-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
/// \file
44
/// Symbol table base class interface
55

6-
/// \defgroup gr_symbol_table Symbol Table
7-
86
#ifndef CPROVER_UTIL_SYMBOL_TABLE_BASE_H
97
#define CPROVER_UTIL_SYMBOL_TABLE_BASE_H
108

0 commit comments

Comments
 (0)