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
filipsajdak
changed the title
[BUG] variable used in if statement is moved despite it is used in the if body
[BUG] variable used in if condition is moved despite it is used in the if statement
Mar 31, 2023
In the current implementation of cppfront (b370ab8), the following code:
Generates:
The
b
variable is moved in the if condition despite its use in the if statement.Adding the use of
b
after an if removes the move ofb
in the if condition and if statement which is correct.The text was updated successfully, but these errors were encountered: