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

            Bug ID: 30582
           Summary: Incorrect alignment in the indentation
           Product: clang
           Version: unspecified
          Hardware: PC
                OS: Linux
            Status: NEW
          Severity: normal
          Priority: P
         Component: Formatter
          Assignee: unassignedclangb...@nondot.org
          Reporter: sylves...@debian.org
                CC: djas...@google.com, kli...@google.com,
                    llvm-bugs@lists.llvm.org
    Classification: Unclassified

MOZ_ASSERT(!mChild &&
             !(mBits & nsCachedStyleData::GetBitForSID(aSID)) &&
           !GetCachedStyleData(aSID),
           "bar");
is converted to: 
MOZ_ASSERT(!mChild && !(mBits & nsCachedStyleData::GetBitForSID(aSID)) &&
             !GetCachedStyleData(aSID),
           "bar");


When it should be
MOZ_ASSERT(!mChild && !(mBits & nsCachedStyleData::GetBitForSID(aSID)) &&
           !GetCachedStyleData(aSID),
           "bar");

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