Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Don't decontainerize type objects.
  • Loading branch information
jnthn committed Mar 19, 2013
1 parent 11b1430 commit 564d659
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/6model/sixmodelobject.h
Expand Up @@ -420,7 +420,7 @@ struct SixModel_REPROps {
#define MARK_AS_TYPE_OBJECT(o) PObj_flag_SET(private0, (o))

/* Macro for decontainerization. */
#define DECONT(interp, o) (STABLE(o)->container_spec ? \
#define DECONT(interp, o) (IS_CONCRETE(o) && STABLE(o)->container_spec ? \
STABLE(o)->container_spec->fetch(interp, o) : \
o)

Expand Down

0 comments on commit 564d659

Please sign in to comment.