Commit 5127efd5 authored by Paul's avatar Paul
Browse files

Reformat

parent 429970e5
...@@ -9,9 +9,7 @@ namespace rtg { ...@@ -9,9 +9,7 @@ namespace rtg {
struct exception : std::runtime_error struct exception : std::runtime_error
{ {
exception(std::string msg = "") exception(std::string msg = "") : std::runtime_error(msg) {}
: std::runtime_error(msg)
{}
}; };
inline exception make_exception(std::string context, std::string message = "") inline exception make_exception(std::string context, std::string message = "")
......
...@@ -17,10 +17,7 @@ struct instruction ...@@ -17,10 +17,7 @@ struct instruction
{ {
} }
instruction(literal l) instruction(literal l) : op(builtin::literal{}), result(l.get_shape()), lit(std::move(l)) {}
: op(builtin::literal{}), result(l.get_shape()), lit(std::move(l))
{
}
operand op; operand op;
shape result; shape result;
......
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