Parse cpp_destructor

This commit is contained in:
Jonathan Müller 2017-03-12 18:38:31 +01:00
commit e787b845d5
6 changed files with 118 additions and 5 deletions

View file

@ -96,6 +96,8 @@ std::unique_ptr<cpp_entity> detail::parse_entity(const detail::parse_context& co
return parse_cpp_conversion_op(context, cur);
case CXCursor_Constructor:
return parse_cpp_constructor(context, cur);
case CXCursor_Destructor:
return parse_cpp_destructor(context, cur);
default:
break;