Browse Source

Got rid of a compilation warning.

merge-requests/37/head
eidheim 11 years ago
parent
commit
4b206c2048
  1. 2
      tests/CodeCompleteResults_H_Test.cc

2
tests/CodeCompleteResults_H_Test.cc

@ -31,7 +31,7 @@ BOOST_AUTO_TEST_CASE(code_complete_results) {
auto results=tu.get_code_completions(buffers, 4, 5);
bool substr_found=false;
for(int c=0;c<results.size();c++) {
for(unsigned c=0;c<results.size();c++) {
if(results.get(c).get_chunks()[1].chunk=="substr") {
substr_found=true;
break;

Loading…
Cancel
Save