Skip to content

Commit

Permalink
Fix warning about unused function gt_ptr
Browse files Browse the repository at this point in the history
  • Loading branch information
fingolfin committed Jun 4, 2018
1 parent 98383bd commit c3e258b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/julia_gc.c
Original file line number Diff line number Diff line change
Expand Up @@ -118,12 +118,12 @@ static inline int lt_ptr(void * a, void * b)
return (uintptr_t)a < (uintptr_t)b;
}

#if 0
static inline int gt_ptr(void * a, void * b)
{
return (uintptr_t)a > (uintptr_t)b;
}

#if 0
static inline void *max_ptr(void *a, void *b)
{
if ((uintptr_t) a > (uintptr_t) b)
Expand Down

0 comments on commit c3e258b

Please sign in to comment.