Constructors

Synopses

Declared in <script/verify_flags.h>

Construct an empty flag set (SCRIPT_VERIFY_NONE).

consteval
script_verify_flags() = default;

Copy constructor.

constexpr
script_verify_flags(script_verify_flags const& other) = default;

Move constructor.

constexpr
script_verify_flags(script_verify_flags&& other) = default;

Construct a single‐bit flag set from a SCRIPT_VERIFY_* flag name.

constexpr
explicit(false)
script_verify_flags(script_verify_flag_name f);

Construct from a hard‐coded 0 literal; any other value fails at compile time.

consteval
explicit(false)
script_verify_flags(value_type f);

Parameters

Name

Description

other

The flag set to copy.

f

The flag name whose bit is set.

Created with MrDocs