/in/foo.cc: In member function 'char Col::getcol()':
/in/foo.cc:26:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(R==0&&B==0&&G==0) return 'K';if(R==0&&B==0&&G==1) return 'G';
^~
/in/foo.cc:26:35: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if(R==0&&B==0&&G==0) return 'K';if(R==0&&B==0&&G==1) return 'G';
^~
/in/foo.cc:27:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(R==0&&B==1&&G==0) return 'B';if(R==0&&B==1&&G==1) return 'C';
^~
/in/foo.cc:27:35: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if(R==0&&B==1&&G==0) return 'B';if(R==0&&B==1&&G==1) return 'C';
^~
/in/foo.cc:28:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(R==1&&B==0&&G==0) return 'R';if(R==1&&B==0&&G==1) return 'Y';
^~
/in/foo.cc:28:35: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if(R==1&&B==0&&G==0) return 'R';if(R==1&&B==0&&G==1) return 'Y';
^~
/in/foo.cc:29:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(R==1&&B==1&&G==0) return 'P';if(R==1&&B==1&&G==1) return 'W';
^~
/in/foo.cc:29:35: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if(R==1&&B==1&&G==0) return 'P';if(R==1&&B==1&&G==1) return 'W';
^~