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

            Bug ID: 41232
           Summary: inconsistent-missing-override diagnostic should not
                    fire on __interface members
           Product: clang
           Version: unspecified
          Hardware: PC
                OS: Windows NT
            Status: NEW
          Severity: normal
          Priority: P
         Component: C++11
          Assignee: [email protected]
          Reporter: [email protected]
                CC: [email protected], [email protected],
                    [email protected], [email protected],
                    [email protected]

Override should not be required on an __interface member, since all the
functions are implicitly pure anyway:

__interface BaseInterface {
    auto foo() -> void;
};

__interface DerivedInterface : BaseInterface {
    auto foo() -> void;  // inconsistent-missing-override
};

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
llvm-bugs mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to