Constructors
Declared in <script/verify_flags.h>
Construct an empty flag set (SCRIPT_VERIFY_NONE).
consteval
script_verify_flags() = default;
» more...
Copy constructor.
constexpr
script_verify_flags(script_verify_flags const& other) = default;
» more...
Move constructor.
constexpr
script_verify_flags(script_verify_flags&& other) = default;
» more...
Construct a single-bit flag set from a SCRIPT_VERIFY_* flag name.
constexpr
explicit(false)
script_verify_flags(script_verify_flag_name f);
» more...
Construct from a hard-coded 0 literal; any other value fails at compile time.
consteval
explicit(false)
script_verify_flags(value_type f);
» more...
| Name | Description |
|---|---|
| other | The flag set to copy. |
| f | The flag name whose bit is set. |