Skip to content

Commit d0da56b

Browse files
committed
fixedEnum is now enumClass
1 parent 1ae6762 commit d0da56b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/LLVM/MetadataAttributes.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@ public struct DIFlags : OptionSet {
505505
/// target's calling convention.
506506
public static let passByReference = DIFlags(rawValue: LLVMDIFlagTypePassByReference.rawValue)
507507
/// Denotes a "fixed enum" type e.g. a C++ `enum class`.
508-
public static let fixedEnum = DIFlags(rawValue: LLVMDIFlagFixedEnum.rawValue)
508+
public static let enumClass = DIFlags(rawValue: LLVMDIFlagEnumClass.rawValue)
509509
/// Denotes a thunk function.
510510
public static let thunk = DIFlags(rawValue: LLVMDIFlagThunk.rawValue)
511511
/// Denotes a class that has a trivial default constructor and is trivially

0 commit comments

Comments
 (0)