From f51a689a7d055a75442672d6a04881455493cefb Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Tue, 30 Aug 2016 01:47:09 +0200 Subject: [PATCH] add detection of undocumented enums and their members --- src/analysis/undocumented.d | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/analysis/undocumented.d b/src/analysis/undocumented.d index 237e1a6..ca10b37 100644 --- a/src/analysis/undocumented.d +++ b/src/analysis/undocumented.d @@ -133,7 +133,9 @@ class UndocumentedDeclarationCheck : BaseAnalyzer { } + mixin V!AnonymousEnumMember; mixin V!ClassDeclaration; + mixin V!EnumDeclaration; mixin V!InterfaceDeclaration; mixin V!StructDeclaration; mixin V!UnionDeclaration;