Skip to content

Latest commit

 

History

History
49 lines (34 loc) · 610 Bytes

RR0048.md

File metadata and controls

49 lines (34 loc) · 610 Bytes

Wrap arguments

Property Value
Id RR0048
Title Wrap arguments
Syntax argument list
Enabled by Default

Usage

Before

M(x, y, z);

After

M(
    x,
    y,
    z);

Before

void M(
    x,
    y,
    z);

After

void M(x, y, z);

See Also

(Generated with DotMarkdown)