highway.cpp: In function 'void find_pair(int, std::vector<int>, std::vector<int>, int, int)':
highway.cpp:55:3: warning: this 'while' clause does not guard... [-Wmisleading-indentation]
while(0>e && e>=D/A);
^~~~~
highway.cpp:56:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'while'
for(int i=0;i<N;i++) {
^~~
highway.cpp:61:3: warning: this 'while' clause does not guard... [-Wmisleading-indentation]
while(C1.empty() || C2.empty());
^~~~~
highway.cpp:62:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'while'
s=0; e=C1.size()-1;
^
highway.cpp:71:17: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
while(0>s && s>=C1.size());
~^~~~~~~~~~~
highway.cpp:71:3: warning: this 'while' clause does not guard... [-Wmisleading-indentation]
while(0>s && s>=C1.size());
^~~~~
highway.cpp:72:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'while'
S=C1[s];
^
highway.cpp:82:17: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
while(0>s && s>=C2.size());
~^~~~~~~~~~~
highway.cpp:82:3: warning: this 'while' clause does not guard... [-Wmisleading-indentation]
while(0>s && s>=C2.size());
^~~~~
highway.cpp:83:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'while'
T=C2[s];
^