https://llvm.org/bugs/show_bug.cgi?id=26204

            Bug ID: 26204
           Summary: Feature request: Align consecutive #define macros
           Product: clang
           Version: unspecified
          Hardware: All
                OS: All
            Status: NEW
          Severity: normal
          Priority: P
         Component: Formatter
          Assignee: unassignedclangb...@nondot.org
          Reporter: eyco...@airspan.com
                CC: djas...@google.com, kli...@google.com,
                    llvm-bugs@lists.llvm.org
    Classification: Unclassified

Hello.

Just like there's AlignConsecutiveAssignments, I'd like to do the same for
#defines.

Example:
#define LWR_A 1
#define LWR_AAA 2
#define LWR_AAAA 4
#define LWR_BB 8
#define LWR_BBAA 16

Should become:
#define LWR_A    1
#define LWR_AAA  2
#define LWR_AAAA 4
#define LWR_BB   8
#define LWR_BBAA 16

Thank you.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to