/in/foo.cc: In function 'void print(bb)':
/in/foo.cc:202:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for (int i=0;i<m;i++) printf("%d ",b.a[i]);printf("\n");
^~~
/in/foo.cc:202:45: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
for (int i=0;i<m;i++) printf("%d ",b.a[i]);printf("\n");
^~~~~~
/in/foo.cc: In function 'int main()':
/in/foo.cc:236:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for (int i=0;i<m;i++) h[u].a[i]=1,h[u].num[i]=0; h[u]=h[u]*A[u];
^~~
/in/foo.cc:236:54: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
for (int i=0;i<m;i++) h[u].a[i]=1,h[u].num[i]=0; h[u]=h[u]*A[u];
^