@@ -38,9 +38,11 @@ irept instrument(const irept irep, const instrumenter_fnt &instrumenter)
38
38
for (const irept::named_subt::value_type name_sub : irep.get_named_sub ())
39
39
{
40
40
const auto it_bool=
41
- new_named_sub.insert ({
42
- name_sub.first ,
43
- instrument (name_sub.second , instrumenter)});
41
+ new_named_sub.insert (
42
+ {
43
+ name_sub.first ,
44
+ instrument (name_sub.second , instrumenter)
45
+ });
44
46
assert (it_bool.second );
45
47
if (it_bool.first ->second !=name_sub.second )
46
48
modified=true ;
@@ -50,9 +52,11 @@ irept instrument(const irept irep, const instrumenter_fnt &instrumenter)
50
52
for (const irept::named_subt::value_type name_sub : irep.get_comments ())
51
53
{
52
54
const auto it_bool=
53
- new_comments.insert ({
54
- name_sub.first ,
55
- instrument (name_sub.second , instrumenter)});
55
+ new_comments.insert (
56
+ {
57
+ name_sub.first ,
58
+ instrument (name_sub.second , instrumenter)
59
+ });
56
60
assert (it_bool.second );
57
61
if (it_bool.first ->second !=name_sub.second )
58
62
modified=true ;
@@ -93,9 +97,11 @@ irept instrument_using_pivot(
93
97
++pit, ++iit)
94
98
{
95
99
const auto it_bool=
96
- new_named_sub.insert ({
97
- iit->first ,
98
- instrument_using_pivot (pit->second , iit->second , instrumenter)});
100
+ new_named_sub.insert (
101
+ {
102
+ iit->first ,
103
+ instrument_using_pivot (pit->second , iit->second , instrumenter)
104
+ });
99
105
assert (it_bool.second );
100
106
if (it_bool.first ->second !=iit->second )
101
107
modified=true ;
@@ -109,9 +115,11 @@ irept instrument_using_pivot(
109
115
++pit, ++iit)
110
116
{
111
117
const auto it_bool=
112
- new_comments.insert ({
113
- iit->first ,
114
- instrument_using_pivot (pit->second , iit->second , instrumenter)});
118
+ new_comments.insert (
119
+ {
120
+ iit->first ,
121
+ instrument_using_pivot (pit->second , iit->second , instrumenter)
122
+ });
115
123
assert (it_bool.second );
116
124
if (it_bool.first ->second !=iit->second )
117
125
modified=true ;
0 commit comments