Skip to content

Commit e3db794

Browse files
author
martin
committed
Whitespace changes to keep clang-format happy.
1 parent 1990994 commit e3db794

8 files changed

+22
-36
lines changed

src/analyses/ai.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class ai_domain_baset
5353
locationt from,
5454
locationt to,
5555
ai_baset &ai,
56-
const namespacet &ns)=0;
56+
const namespacet &ns) = 0;
5757

5858
virtual void output(
5959
std::ostream &out,

src/analyses/custom_bitvector_analysis.h

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,9 @@ class custom_bitvector_analysist;
2323
class custom_bitvector_domaint:public ai_domain_baset
2424
{
2525
public:
26-
void transform(
27-
locationt from,
28-
locationt to,
29-
ai_baset &ai,
30-
const namespacet &ns) final override;
26+
void
27+
transform(locationt from, locationt to, ai_baset &ai, const namespacet &ns)
28+
final override;
3129

3230
void output(
3331
std::ostream &out,

src/analyses/escape_analysis.h

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,9 @@ class escape_domaint:public ai_domain_baset
2828
{
2929
}
3030

31-
void transform(
32-
locationt from,
33-
locationt to,
34-
ai_baset &ai,
35-
const namespacet &ns) final override;
31+
void
32+
transform(locationt from, locationt to, ai_baset &ai, const namespacet &ns)
33+
final override;
3634

3735
void output(
3836
std::ostream &out,

src/analyses/global_may_alias.h

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,9 @@ class global_may_alias_domaint:public ai_domain_baset
2828
{
2929
}
3030

31-
void transform(
32-
locationt from,
33-
locationt to,
34-
ai_baset &ai,
35-
const namespacet &ns) final override;
31+
void
32+
transform(locationt from, locationt to, ai_baset &ai, const namespacet &ns)
33+
final override;
3634

3735
void output(
3836
std::ostream &out,

src/analyses/interval_domain.h

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,9 @@ class interval_domaint:public ai_domain_baset
3232
{
3333
}
3434

35-
void transform(
36-
locationt from,
37-
locationt to,
38-
ai_baset &ai,
39-
const namespacet &ns) final override;
35+
void
36+
transform(locationt from, locationt to, ai_baset &ai, const namespacet &ns)
37+
final override;
4038

4139
void output(
4240
std::ostream &out,

src/analyses/is_threaded.cpp

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,9 @@ class is_threaded_domaint:public ai_domain_baset
4848
old_is_threaded!=is_threaded;
4949
}
5050

51-
void transform(
52-
locationt from,
53-
locationt to,
54-
ai_baset &ai,
55-
const namespacet &ns) final override
51+
void
52+
transform(locationt from, locationt to, ai_baset &ai, const namespacet &ns)
53+
final override
5654
{
5755
// assert(reachable);
5856

src/analyses/reaching_definitions.h

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -113,11 +113,9 @@ class rd_range_domaint:public ai_domain_baset
113113
bv_container=&_bv_container;
114114
}
115115

116-
void transform(
117-
locationt from,
118-
locationt to,
119-
ai_baset &ai,
120-
const namespacet &ns) final override;
116+
void
117+
transform(locationt from, locationt to, ai_baset &ai, const namespacet &ns)
118+
final override;
121119

122120
void output(
123121
std::ostream &out,

src/analyses/uninitialized_domain.h

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,9 @@ class uninitialized_domaint:public ai_domain_baset
2929
typedef std::set<irep_idt> uninitializedt;
3030
uninitializedt uninitialized;
3131

32-
void transform(
33-
locationt from,
34-
locationt to,
35-
ai_baset &ai,
36-
const namespacet &ns) final override;
32+
void
33+
transform(locationt from, locationt to, ai_baset &ai, const namespacet &ns)
34+
final override;
3735

3836
void output(
3937
std::ostream &out,

0 commit comments

Comments
 (0)