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

            Bug ID: 38215
           Summary: boolean && misformatted inside template parameter list
           Product: clang
           Version: unspecified
          Hardware: PC
                OS: All
            Status: NEW
          Severity: enhancement
          Priority: P
         Component: Formatter
          Assignee: unassignedclangb...@nondot.org
          Reporter: dch...@google.com
                CC: djas...@google.com, kli...@google.com,
                    llvm-bugs@lists.llvm.org

This snippet should be formatted as:

template <typename T,
          bool supported = std::is_move_constructible<T>::value &&
              std::is_move_assignable<T>::value>
class MoveOnly;

But locally, it seems to be getting formatted as:

template <typename T,
          bool supported = std::is_move_constructible<T>::value&&
              std::is_move_assignable<T>::value>
class MoveOnly;

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