You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The issue is the implementation based on if-else is not a single
statement. So code like below does not work.
```
if (foo)
AMREX_ASSUME(bar);
else
std::cout << "else\n";
```
The new implementation based on do-while(0) fixes this issue.
0 commit comments