Benjamin Bannier created MESOS-6320:
---------------------------------------

             Summary: Implement clang-tidy check to catch incorrect flags 
hierarchies
                 Key: MESOS-6320
                 URL: https://issues.apache.org/jira/browse/MESOS-6320
             Project: Mesos
          Issue Type: Bug
            Reporter: Benjamin Bannier


Classes need to always use {{virtual}} inheritance when being derived from 
{{FlagsBase}}. Also, in order to compose such derived flags they should be 
inherited virtually again.

Some examples:
{code}
struct A : virtual FlagsBase {}; // OK
struct B : FlagsBase {}; // ERROR
struct C : A {}; // ERROR
{code}


We should implement a clang-tidy checker to catch such wrong inheritance issues.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to