Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions src/gasman.h
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ static inline void SET_PTR_BAG(Bag bag, Bag *val)
** is incorrect as mentioned in the section for 'PTR_BAG' (see "PTR_BAG").
*/

#if !defined(USE_GASMAN)
#if defined(USE_BOEHM_GC)

static inline void CHANGED_BAG(Bag bag)
{
Expand All @@ -370,7 +370,7 @@ static inline void CHANGED_BAG(Bag bag)

extern void CHANGED_BAG(Bag b);

#else
#elif defined(USE_GASMAN)

extern Bag * YoungBags;
extern Bag ChangedBags;
Expand All @@ -382,6 +382,10 @@ static inline void CHANGED_BAG(Bag bag)
}
}

#else

#error unknown garbage collector

#endif


Expand Down
Loading