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

            Bug ID: 31595
           Summary: Incorrect formatting of asterisks in function
                    declarations via macro
           Product: clang
           Version: unspecified
          Hardware: PC
                OS: All
            Status: NEW
          Severity: normal
          Priority: P
         Component: Formatter
          Assignee: unassignedclangb...@nondot.org
          Reporter: san...@playingwithpointers.com
                CC: djas...@google.com, kli...@google.com,
                    llvm-bugs@lists.llvm.org
    Classification: Unclassified

clang-format reformats this

DECLARE_FN(void,Frobnication,do_something,(SomeState*state,int
hello,void*hello_world))


as

DECLARE_FN(void, Frobnication, do_something,
           (SomeState * state, int hello, void *hello_world))

when I would prefer

DECLARE_FN(void, Frobnication, do_something,
           (SomeState *state, int hello, void *hello_world))

-- 
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