script_verify_flags::script_verify_flags

Constructors

Synopses

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...

Parameters

NameDescription
otherThe flag set to copy.
fThe flag name whose bit is set.