mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2025-12-27 05:50:10 +01:00
botor: Remove a couple of inlines to cleanup -Winline
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
This commit is contained in:
parent
34f507a919
commit
3d51ec8a79
2 changed files with 2 additions and 2 deletions
|
|
@ -1072,7 +1072,7 @@ coverage_reset (struct coverage *cells)
|
|||
coverage_rewind (cells);
|
||||
}
|
||||
|
||||
inline static struct cell *
|
||||
static struct cell *
|
||||
coverage_alloc (sweep_line_t *sweep_line,
|
||||
struct cell *tail,
|
||||
int x)
|
||||
|
|
|
|||
|
|
@ -111,7 +111,7 @@ _cairo_freepool_alloc (cairo_freepool_t *freepool)
|
|||
cairo_freelist_node_t *node;
|
||||
|
||||
node = freepool->first_free_node;
|
||||
if (unlikely (node == NULL))
|
||||
if (node == NULL)
|
||||
return _cairo_freepool_alloc_from_pool (freepool);
|
||||
|
||||
VG (VALGRIND_MAKE_MEM_DEFINED (node, sizeof (node->next)));
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue