Skip to content

Commit 4ae5b6b

Browse files
Remove typedef used only once
1 parent 426d450 commit 4ae5b6b

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/goto-symex/goto_symex_state.h

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -327,12 +327,10 @@ class goto_symex_statet final
327327
// threads
328328
unsigned atomic_section_id;
329329
typedef std::pair<unsigned, std::list<guardt> > a_s_r_entryt;
330-
typedef std::unordered_map<ssa_exprt, a_s_r_entryt, irep_hash>
331-
read_in_atomic_sectiont;
332330
typedef std::list<guardt> a_s_w_entryt;
333331
typedef std::unordered_map<ssa_exprt, a_s_w_entryt, irep_hash>
334332
written_in_atomic_sectiont;
335-
read_in_atomic_sectiont read_in_atomic_section;
333+
std::unordered_map<ssa_exprt, a_s_r_entryt, irep_hash> read_in_atomic_section;
336334
written_in_atomic_sectiont written_in_atomic_section;
337335

338336
unsigned total_vccs, remaining_vccs;

0 commit comments

Comments
 (0)