diff --git a/src/Generator/Passes/CheckFlagEnumsPass.cs b/src/Generator/Passes/CheckFlagEnumsPass.cs index 2a10c576..bcd29acb 100644 --- a/src/Generator/Passes/CheckFlagEnumsPass.cs +++ b/src/Generator/Passes/CheckFlagEnumsPass.cs @@ -2,6 +2,10 @@ namespace CppSharp.Passes { + /// + /// Checks for enumerations that should be treated as a collection + /// of flags (and annotated with the .NET [Flags] when generated). + /// public class CheckFlagEnumsPass : TranslationUnitPass { static bool IsFlagEnum(Enumeration @enum)