Skip to content

Commit

Permalink
Whitespace changes to keep clang-format happy.
Browse files Browse the repository at this point in the history
  • Loading branch information
martin committed Feb 9, 2018
1 parent 1990994 commit e3db794
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 36 deletions.
2 changes: 1 addition & 1 deletion src/analyses/ai.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class ai_domain_baset
locationt from,
locationt to,
ai_baset &ai,
const namespacet &ns)=0;
const namespacet &ns) = 0;

virtual void output(
std::ostream &out,
Expand Down
8 changes: 3 additions & 5 deletions src/analyses/custom_bitvector_analysis.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,9 @@ class custom_bitvector_analysist;
class custom_bitvector_domaint:public ai_domain_baset
{
public:
void transform(
locationt from,
locationt to,
ai_baset &ai,
const namespacet &ns) final override;
void
transform(locationt from, locationt to, ai_baset &ai, const namespacet &ns)
final override;

void output(
std::ostream &out,
Expand Down
8 changes: 3 additions & 5 deletions src/analyses/escape_analysis.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,9 @@ class escape_domaint:public ai_domain_baset
{
}

void transform(
locationt from,
locationt to,
ai_baset &ai,
const namespacet &ns) final override;
void
transform(locationt from, locationt to, ai_baset &ai, const namespacet &ns)
final override;

void output(
std::ostream &out,
Expand Down
8 changes: 3 additions & 5 deletions src/analyses/global_may_alias.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,9 @@ class global_may_alias_domaint:public ai_domain_baset
{
}

void transform(
locationt from,
locationt to,
ai_baset &ai,
const namespacet &ns) final override;
void
transform(locationt from, locationt to, ai_baset &ai, const namespacet &ns)
final override;

void output(
std::ostream &out,
Expand Down
8 changes: 3 additions & 5 deletions src/analyses/interval_domain.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,9 @@ class interval_domaint:public ai_domain_baset
{
}

void transform(
locationt from,
locationt to,
ai_baset &ai,
const namespacet &ns) final override;
void
transform(locationt from, locationt to, ai_baset &ai, const namespacet &ns)
final override;

void output(
std::ostream &out,
Expand Down
8 changes: 3 additions & 5 deletions src/analyses/is_threaded.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,9 @@ class is_threaded_domaint:public ai_domain_baset
old_is_threaded!=is_threaded;
}

void transform(
locationt from,
locationt to,
ai_baset &ai,
const namespacet &ns) final override
void
transform(locationt from, locationt to, ai_baset &ai, const namespacet &ns)
final override
{
// assert(reachable);

Expand Down
8 changes: 3 additions & 5 deletions src/analyses/reaching_definitions.h
Original file line number Diff line number Diff line change
Expand Up @@ -113,11 +113,9 @@ class rd_range_domaint:public ai_domain_baset
bv_container=&_bv_container;
}

void transform(
locationt from,
locationt to,
ai_baset &ai,
const namespacet &ns) final override;
void
transform(locationt from, locationt to, ai_baset &ai, const namespacet &ns)
final override;

void output(
std::ostream &out,
Expand Down
8 changes: 3 additions & 5 deletions src/analyses/uninitialized_domain.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,9 @@ class uninitialized_domaint:public ai_domain_baset
typedef std::set<irep_idt> uninitializedt;
uninitializedt uninitialized;

void transform(
locationt from,
locationt to,
ai_baset &ai,
const namespacet &ns) final override;
void
transform(locationt from, locationt to, ai_baset &ai, const namespacet &ns)
final override;

void output(
std::ostream &out,
Expand Down

0 comments on commit e3db794

Please sign in to comment.