File tree Expand file tree Collapse file tree 1 file changed +1
-21
lines changed Expand file tree Collapse file tree 1 file changed +1
-21
lines changed Original file line number Diff line number Diff line change @@ -204,26 +204,6 @@ enum class SymbolReferenceKind : uint8_t {
204
204
Far_Relative_Indirectable,
205
205
};
206
206
207
- // / Destructor variants.
208
- enum class DestructorKind : uint8_t {
209
- // / A deallocating destructor destroys the object and deallocates
210
- // / the memory associated with it.
211
- Deallocating,
212
-
213
- // / A destroying destructor destroys the object but does not
214
- // / deallocate the memory associated with it.
215
- Destroying
216
- };
217
-
218
- // / Constructor variants.
219
- enum class ConstructorKind : uint8_t {
220
- // / An allocating constructor allocates an object and initializes it.
221
- Allocating,
222
-
223
- // / An initializing constructor just initializes an existing object.
224
- Initializing
225
- };
226
-
227
207
// / An initial value for a definition of an llvm::GlobalVariable.
228
208
class ConstantInit {
229
209
llvm::PointerUnion<ConstantInitFuture, llvm::Type*> Data;
@@ -446,7 +426,7 @@ inline Alignment Alignment::alignmentAtOffset(Size S) const {
446
426
return *this ;
447
427
}
448
428
449
- // / Get this alignment asx a Size value.
429
+ // / Get this alignment as a Size value.
450
430
inline Size Alignment::asSize () const {
451
431
return Size (getValue ());
452
432
}
You can’t perform that action at this time.
0 commit comments