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
In case of a global variable with braced-init `findLocationAfterToken`
does not return the location after the semi. Instead it returns a
location at the end of the init-expr. This leaves some characters in the
result. This fix tries to find the right-brace, if a semi is required
which does the job. To move only the location which need it a new
parameter was introduced `RequireSemi` which activates the behaviour for
`FindLocationAfterSemi` and `GetSourceRangeAfterSemi`.
declaration + definition
auto x { 27 };
yields
which is obviously wrong.
The text was updated successfully, but these errors were encountered: