Skip to content
This repository has been archived by the owner on Apr 13, 2022. It is now read-only.

Aligning dereferenced pointer in C #59

Open
ahmedhassan-eng opened this issue May 27, 2020 · 0 comments
Open

Aligning dereferenced pointer in C #59

ahmedhassan-eng opened this issue May 27, 2020 · 0 comments

Comments

@ahmedhassan-eng
Copy link

While working on a C file,

When trying to align the lines below:

      pRes[1] = 0x11u; /* Set response */
      pRes[2] = 0x22u;
      *pLength = 3u; /* Set response length */

they turn into:

      pRes[1]       = 0x11u;  /* Set response */
      pRes[2]       = 0x22u;
           *pLength = 3u;     /* Set response length */

The last line is indented for no obvious reason.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant