Cleanup: clang-format

This commit is contained in:
Campbell Barton 2022-02-03 21:32:31 +11:00
parent c8cca88851
commit 98cc3c6009
3 changed files with 5 additions and 5 deletions

View File

@ -62,9 +62,9 @@ bool ED_editors_flush_edits(struct Main *bmain);
* \param new_id: may be NULL to unlink \a old_id.
*/
void ED_spacedata_id_remap_single(struct ScrArea *area,
struct SpaceLink *sl,
struct ID *old_id,
struct ID *new_id);
struct SpaceLink *sl,
struct ID *old_id,
struct ID *new_id);
void ED_spacedata_id_remap(struct ScrArea *area,
struct SpaceLink *sl,
const struct IDRemapper *mappings);

View File

@ -102,7 +102,6 @@ void UI_icon_render_id_ex(const struct bContext *C,
const bool use_job,
struct PreviewImage *r_preview_image);
/**
* Render size for preview images and icons
*/

View File

@ -35,7 +35,8 @@ static void node_declare(NodeDeclarationBuilder &b)
.min(0)
.max(1000)
.supports_field()
.description(N_("The number of control points to create on the segment following each point"));
.description(
N_("The number of control points to create on the segment following each point"));
b.add_output<decl::Geometry>(N_("Curve"));
}