Skip to content

Commit

Permalink
Whitespace.
Browse files Browse the repository at this point in the history
  • Loading branch information
1uc committed Jun 11, 2024
1 parent 18cfcb5 commit 84417c8
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/codegen/codegen_neuron_cpp_visitor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -185,11 +185,8 @@ void CodegenNeuronCppVisitor::print_check_table_function_prototypes() {
for (const auto& function: info.functions_with_table) {
auto method_name_str = function->get_node_name();
auto method_args_str = get_arg_str(internal_method_parameters());
printer->fmt_line("{}{}{}({});",
table_function_prefix(),
method_name_str,
info.rsuffix,
method_args_str);
printer->fmt_line(
"{}{}{}({});", table_function_prefix(), method_name_str, info.rsuffix, method_args_str);

Check warning on line 189 in src/codegen/codegen_neuron_cpp_visitor.cpp

View check run for this annotation

Codecov / codecov/patch

src/codegen/codegen_neuron_cpp_visitor.cpp#L187-L189

Added lines #L187 - L189 were not covered by tests
}
printer->pop_block();
}
Expand Down

0 comments on commit 84417c8

Please sign in to comment.