mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2025-12-29 05:40:14 +01:00
Fix/silence some warnings in 'make check'
'make check' currently fails with the following in src/test-suite.log (how can one tell automake not to hide the error message in a file?!?): FAIL: check-doc-syntax.sh ========================= Checking documentation for incorrect syntax ./cairo-cogl-surface.c: * cairo_cogl_pipeline_ts. On failure, both pointers will be set to ./cairo-cogl-surface.c:/* Mostly taken from cairo_vg_surface.c */ Error: some function names in the docs are not followed by parentheses. Fix this by searching for the following regexp in the above files: '^[^:]*:[/ ][*]\(\|[ ].*\)\([^#']\|^\)\<\(cairo_[][<>/0-9a-z_]*\>[^][<>(]\)' FAIL check-doc-syntax.sh (exit status: 1) This commit silences that. The fix is likely not correct, but since these are normal comments and not actual doc comments, it does not matter much. Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
parent
881e2579f0
commit
3b1bf9d6d3
1 changed files with 2 additions and 2 deletions
|
|
@ -2976,7 +2976,7 @@ set_layer_texture_with_attributes (CoglPipeline *pipeline,
|
|||
}
|
||||
|
||||
/* This takes an argument of a pointer to an array of two pointers to
|
||||
* cairo_cogl_pipeline_ts. On failure, both pointers will be set to
|
||||
* #cairo_cogl_pipeline_t. On failure, both pointers will be set to
|
||||
* NULL */
|
||||
static void
|
||||
get_source_mask_operator_destination_pipelines (cairo_cogl_pipeline_t **pipelines,
|
||||
|
|
@ -3640,7 +3640,7 @@ BAIL:
|
|||
return status;
|
||||
}
|
||||
|
||||
/* Mostly taken from cairo_vg_surface.c */
|
||||
/* Mostly taken from #cairo_vg_surface.c */
|
||||
/* TODO: implement actual font support, with either cogl-pango's glyph
|
||||
* cache or our own */
|
||||
static cairo_int_status_t
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue