Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Strange spacing produced by SA1132 code fix #1553

Closed
sharwell opened this issue Sep 27, 2015 · 0 comments
Closed

Strange spacing produced by SA1132 code fix #1553

sharwell opened this issue Sep 27, 2015 · 0 comments
Assignees
Milestone

Comments

@sharwell
Copy link
Member

Input

        public const int ILD_NORMAL = 0x0000,
            ILD_TRANSPARENT = 0x0001,
            ILD_MASK = 0x0010,
            ILD_ROP = 0x0040;

Actual

        public const int ILD_NORMAL = 0x0000;

        public const int             ILD_TRANSPARENT = 0x0001;

        public const int             ILD_MASK = 0x0010;

        public const int             ILD_ROP = 0x0040;

Expected

        public const int ILD_NORMAL = 0x0000;

        public const int ILD_TRANSPARENT = 0x0001;

        public const int ILD_MASK = 0x0010;

        public const int ILD_ROP = 0x0040;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants