unique.cpp: In function 'std::vector<int> PickUnique(int)':
unique.cpp:10:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(g<=p) b[r]=0; p=g;
^~
unique.cpp:10:20: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
if(g<=p) b[r]=0; p=g;
^
unique.cpp:16:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(g<=p) b[r]=0; p=g;
^~
unique.cpp:16:20: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
if(g<=p) b[r]=0; p=g;
^