1In file included from inline_ctor.cpp:7: 2./inline_ctor.h:13:3: warning: [chromium-style] Complex constructor has an inlined body. 3 InlineCtorsArentOKInHeader() {} 4 ^ 5./inline_ctor.h:14:3: warning: [chromium-style] Complex destructor has an inline body. 6 ~InlineCtorsArentOKInHeader() {} 7 ^ 8./inline_ctor.h:31:25: warning: [chromium-style] Complex constructor has an inlined body. 9INLINE_CTORS_IN_A_MACRO(InlineCtorsBehindAMacroArentOKInHeader); 10 ^ 11./inline_ctor.h:31:1: warning: [chromium-style] Complex destructor has an inline body. 12INLINE_CTORS_IN_A_MACRO(InlineCtorsBehindAMacroArentOKInHeader); 13^ 14./inline_ctor.h:25:5: note: expanded from macro 'INLINE_CTORS_IN_A_MACRO' 15 ~CLASS_NAME() {} \ 16 ^ 17./inline_ctor.h:95:1: warning: [chromium-style] Complex class/struct needs an explicit out-of-line constructor. 18struct FourNonTrivialMembers { 19^ 20./inline_ctor.h:95:1: warning: [chromium-style] Complex class/struct needs an explicit out-of-line destructor. 216 warnings generated. 22