g()1int g() { 2 } 3 4 template< typename Accessor, typename bEnable = void > 5 struct IntroduceBitDef; 6 7 template< typename Accessor > 8 struct IntroduceBitDef< Accessor, typename 9 boost::enable_if_c< CoreConfig::VERSION <= 3 >::type > 10 { 11 12 // class body here 13 // anything after this point is not parsed by ctags fIntroduceBitDef14 int f() { } 15 16 }; 17