coroutines: Fix indentation (NFC).

Whitespace-only change.

gcc/cp/ChangeLog:

2020-03-15  Iain Sandoe  <iain@sandoe.co.uk>

	* coroutines.cc (co_await_expander): Fix indentation.
This commit is contained in:
Iain Sandoe 2020-03-15 14:22:18 +00:00
parent b408e010cc
commit ced66da313
2 changed files with 8 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2020-03-15 Iain Sandoe <iain@sandoe.co.uk>
* coroutines.cc (co_await_expander): Fix indentation.
2020-03-14 Jason Merrill <jason@redhat.com>
PR c++/92068

View File

@ -1471,10 +1471,10 @@ co_await_expander (tree *stmt, int * /*do_subtree*/, void *d)
dtor = NULL_TREE;
else
{
/* Initialize the var from the provided 'o' expression. */
r = build2 (INIT_EXPR, await_type, var, expr);
r = coro_build_cvt_void_expr_stmt (r, loc);
append_to_statement_list (r, &stmt_list);
/* Initialize the var from the provided 'o' expression. */
r = build2 (INIT_EXPR, await_type, var, expr);
r = coro_build_cvt_void_expr_stmt (r, loc);
append_to_statement_list (r, &stmt_list);
}
/* Use the await_ready() call to test if we need to suspend. */