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