Skip to content
Snippets Groups Projects
Commit 752dd880 authored by Roberto Raggi's avatar Roberto Raggi
Browse files

Show how to simplify declarations. e.g.

static int i, *ptr = &i;

will be replaced with

static int i;
static int *ptr = &i;

using the editor's context menu > Simplify Declarations
parent b18cb113
No related branches found
No related tags found
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment