Changeset b7c89aa
- Timestamp:
- Aug 27, 2018, 5:53:28 PM (6 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 381bea6
- Parents:
- 90152a4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/prelude/builtins.c
r90152a4 rb7c89aa 121 121 forall(dtype T) 122 122 static inline void ^?{}(__Destructor(T) & x) { 123 x.dtor(x.object); 123 if (x.object && x.dtor) { 124 x.dtor(x.object); 125 } 124 126 } 125 127
Note: See TracChangeset
for help on using the changeset viewer.