diff mbox series

[COMMITTED] coroutines: Fix indentation (NFC).

Message ID 3BCF743D-356B-4D2F-AD50-79794529100C@sandoe.co.uk
State New
Headers show
Series [COMMITTED] coroutines: Fix indentation (NFC). | expand

Commit Message

Iain Sandoe March 15, 2020, 3:39 p.m. UTC
Hi

Whitespace-only change.

Tested on x86_64-darwin, applied to master.
thanks
Iain
    
gcc/cp/ChangeLog:

2020-03-15  Iain Sandoe  <iain@sandoe.co.uk>
    
	* coroutines.cc (co_await_expander): Fix indentation.
diff mbox series

Patch

diff --git a/gcc/cp/coroutines.cc b/gcc/cp/coroutines.cc
index 920575b0f54..f70b3ab69ab 100644
--- a/gcc/cp/coroutines.cc
+++ b/gcc/cp/coroutines.cc
@@ -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.  */