@@ -114,8 +114,8 @@ The excerpt below gives some details of the class <i>irept</i>:
114114<pre><code class="c++">class irept
115115{
116116public:
117- typedef std::vector< irept> subt;
118- typedef std::map< irep_name_string, irept> named_subt;
117+ typedef std::vector< irept> subt;
118+ typedef std::map< irep_name_string, irept> named_subt;
119119 ...
120120
121121public:
@@ -134,7 +134,7 @@ protected:
134134 dt *data;
135135 ...
136136};
137- </pre ></code >
137+ </code ></pre >
138138
139139<p class="justified">
140140Every node of any tree is an object of class <i>irept</i>. Each node has a
@@ -692,20 +692,20 @@ declaration of the interface:
692692{
693693public:
694694 // Insert the symbol
695- bool add(const symbolt &symb);
695+ bool add(const symbolt & symb);
696696 // Insert symb into the
697697 // table and erase it.
698698 // New_symbol points to the
699699 // newly inserted element.
700- bool move(symbolt &symbol, symbolt *&new_symbol);
700+ bool move(symbolt & symbol, symbolt *& new_symbol);
701701
702702 // Insert symb into the
703703 // table. Then symb is erased.
704- bool move(symbolt &symb );
704+ bool move(symbolt &syb );
705705
706706 // Return the entry of the
707707 // symbol with given name.
708- const irept &value(const std::string &name) const;
708+ const irept & value(const std::string & name) const;
709709};
710710</code></pre>
711711
@@ -815,7 +815,7 @@ public:
815815 instructionst instructions;
816816
817817 typedef typename
818- std::map< const_targett, unsigned> target_numberst;
818+ std::map< const_targett, unsigned> target_numberst;
819819
820820 //A map containing the unique number of each target
821821 target_numberst target_numbers;
0 commit comments