Skip to content

Commit

Permalink
[codingstd] Add ASSERT_ARGS.
Browse files Browse the repository at this point in the history
  • Loading branch information
jkeenan committed Aug 28, 2011
1 parent 656728f commit 230f5ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/6model/reprs/KnowHOWREPR.c
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ gc_free(PARROT_INTERP, PMC *obj)
static storage_spec
get_storage_spec(PARROT_INTERP, STable *st)
{
ASSERT_ARGS(get_storage_spec)
/* ASSERT_ARGS(get_storage_spec) */
storage_spec spec;
spec.inlineable = STORAGE_SPEC_REFERENCE;
spec.boxed_primitive = STORAGE_SPEC_BP_NONE;
Expand All @@ -408,7 +408,7 @@ get_storage_spec(PARROT_INTERP, STable *st)
static INTVAL
is_attribute_initialized(PARROT_INTERP, PMC *Object, PMC *ClassHandle, STRING *Name, INTVAL Hint)
{
ASSERT_ARGS(is_attribute_initialized)
/* ASSERT_ARGS(is_attribute_initialized) */
die_no_attrs(interp);
}

Expand Down
1 change: 0 additions & 1 deletion src/6model/reprs/P6opaque.c
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,6 @@ accessor_call(PARROT_INTERP, PMC *obj, STRING *name)
PMC *
index_mapping_and_flat_list(PARROT_INTERP, PMC *WHAT, P6opaqueREPRData *repr_data)
{
ASSERT_ARGS(index_mapping_and_flat_list)
PMC *flat_list = pmc_new(interp, enum_class_ResizablePMCArray);
PMC *class_list = pmc_new(interp, enum_class_ResizablePMCArray);
PMC *attr_map_list = pmc_new(interp, enum_class_ResizablePMCArray);
Expand Down

0 comments on commit 230f5ef

Please sign in to comment.