taster.cpp: In function 'void Sort(std::vector<int>&)':
taster.cpp:25:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
while(v.size() < n)
~~~~~~~~~^~~
taster.cpp:27:14: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
if(j == B.size())
~~^~~~~~~~~~~
taster.cpp:29:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
else if(i == A.size())
~~^~~~~~~~~~~
taster.cpp: In function 'std::vector<int> SortWines(int, std::vector<int>)':
taster.cpp:55:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(i=0; i<n; ++i)
^~~
taster.cpp:57:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
return ans;
^~~~~~