-
Notifications
You must be signed in to change notification settings - Fork 23
Open
Description
In IPR, we have
// -- DeclSpecifiers --
enum class DeclSpecifiers : uint32_t {
None = 0,
...
Inline = 1 << 5,
Virtual = 1 << 6, // also used as storage class specifier
// for virtual base subobjects
Explicit = 1 << 7,
Pure = 1 << 8,
FunctionSpecifier = Inline | Virtual | Explicit | Pure,
...We need to add support for C++20 explicit(expr).
Metadata
Metadata
Assignees
Labels
No labels