[#NetPermissions-ClearFlag] = xref:NetPermissions.adoc[NetPermissions]::ClearFlag :relfileprefix: ../ :mrdocs: Remove a flag from a set of flags. ClearFlag is only called with `f` == NetPermissionFlags::Implicit. If that should change in the future, be aware that ClearFlag should not be called with a subflag of a multiflag, e.g. NetPermissionFlags::Relay or NetPermissionFlags::Download, as that would leave `flags` in an invalid state corresponding to none of the existing flags. == Synopsis Declared in `<net_permissions.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static void ClearFlag( xref:NetPermissionFlags.adoc[NetPermissionFlags]& flags, xref:NetPermissionFlags.adoc[NetPermissionFlags] f); ---- == Parameters [cols="1,4"] |=== | Name| Description | *flags* | The flag set to modify. | *f* | The flag to remove (must be NetPermissionFlags::Implicit). |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#