[llvm-bugs] [Bug 30582] New: Incorrect alignment in the indentation

via llvm-bugs llvm-bugs at lists.llvm.org
Fri Sep 30 13:13:34 PDT 2016


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: unassignedclangbugs at nondot.org
          Reporter: sylvestre at debian.org
                CC: djasper at google.com, klimek at google.com,
                    llvm-bugs at 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.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-bugs/attachments/20160930/a68c3d5a/attachment.html>


More information about the llvm-bugs mailing list