Skip to content

Commit ea74c6d

Browse files
Updated comment
1 parent 909b557 commit ea74c6d

File tree

2 files changed

+9
-25
lines changed

2 files changed

+9
-25
lines changed

src/util/symbol_table.cpp

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
1-
/*******************************************************************\
2-
3-
Module:
4-
5-
Author: Daniel Kroening, [email protected]
6-
7-
\*******************************************************************/
1+
// Copyright 2016-2017 DiffBlue Limited. All Rights Reserved.
82

93
#include "symbol_table.h"
104

src/util/symbol_table.h

+8-18
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,13 @@
1-
/*******************************************************************\
1+
// Copyright 2016-2017 DiffBlue Limited. All Rights Reserved.
22

3-
Module:
4-
5-
Author: Daniel Kroening, [email protected]
6-
7-
\*******************************************************************/
3+
/// \file
4+
/// Symbol table
85

6+
/// \defgroup gr_symbol_table Symbol Table
97

108
#ifndef CPROVER_UTIL_SYMBOL_TABLE_H
119
#define CPROVER_UTIL_SYMBOL_TABLE_H
1210

13-
/*! \file util/symbol_table.h
14-
* \brief Symbol table
15-
*
16-
* \author Daniel Kroening <[email protected]>
17-
*/
18-
19-
/*! \defgroup gr_symbol_table Symbol Table
20-
*/
21-
2211
#include <iosfwd>
2312
#include <map>
2413
#include <unordered_map>
@@ -27,6 +16,7 @@ Author: Daniel Kroening, [email protected]
2716

2817
#include "symbol.h"
2918

19+
3020
#define forall_symbols(it, expr) \
3121
for(symbol_tablet::symbolst::const_iterator it=(expr).begin(); \
3222
it!=(expr).end(); ++it)
@@ -48,9 +38,9 @@ typedef std::multimap<irep_idt, irep_idt> symbol_module_mapt;
4838
it_end=(expr).upper_bound(module); \
4939
it!=it_end; ++it)
5040

51-
/*! \brief The symbol table
52-
\ingroup gr_symbol_table
53-
*/
41+
42+
/// \brief The symbol table
43+
/// \ingroup gr_symbol_table
5444
class symbol_tablet
5545
{
5646
public:

0 commit comments

Comments
 (0)