Commit af86d975 authored by Paul's avatar Paul
Browse files

Formatting

parent 94ef1ad0
...@@ -23,9 +23,6 @@ struct match_const_add ...@@ -23,9 +23,6 @@ struct match_const_add
} }
}; };
void constant_propagate::apply(program& p) const void constant_propagate::apply(program& p) const { match::find_matches(p, match_const_add{}); }
{
match::find_matches(p, match_const_add{});
}
} // namespace migraph } // namespace migraph
...@@ -29,7 +29,6 @@ void const_add1() ...@@ -29,7 +29,6 @@ void const_add1()
EXPECT(p1 == p2); EXPECT(p1 == p2);
} }
void const_add2() void const_add2()
{ {
migraph::program p1; migraph::program p1;
...@@ -61,9 +60,9 @@ void const_add3() ...@@ -61,9 +60,9 @@ void const_add3()
EXPECT(p1 == p2); EXPECT(p1 == p2);
} }
int main() { int main()
{
const_add1(); const_add1();
const_add2(); const_add2();
const_add3(); const_add3();
} }
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment