Skip to content

Commit

Permalink
Removed a warning + made case-insensitive the default
Browse files Browse the repository at this point in the history
for Wikidata
  • Loading branch information
joka921 committed Apr 9, 2019
1 parent 636e36a commit 4b0acf7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/engine/Filter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -536,6 +536,8 @@ void Filter::computeResultFixedValue(
'\"' + std::string(split2.val) + '\"' + "@" + char(127);
}
} break;
default:
break;
}
}
}
Expand Down
2 changes: 2 additions & 0 deletions src/index/IndexBuilderMain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,8 @@ int main(int argc, char** argv) {
cout << endl
<< "! ERROR in processing options (getopt returned '" << c
<< "' = 0x" << std::setbase(16) << c << ")" << endl
<< "Corresponding ascii option : -" << std::string(1, c) << endl
<< "This is either an unsupported option or there was an error"
<< endl;
exit(1);
}
Expand Down
3 changes: 2 additions & 1 deletion wikidata_settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@
"<http://www.wikidata.org/entity/statement",
"<http://www.wikidata.org/value",
"<http://www.wikidata.org/reference"
]
],
"ignore-case": true
}

0 comments on commit 4b0acf7

Please sign in to comment.