Skip to content

Commit

Permalink
[ocloc] Enable query argument
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronWantoch authored and gitsgh committed Jan 16, 2025
1 parent 2b9430b commit 08aaf56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ocloc/interceptor/oclocEntryPoints.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ std::vector<const char*> ParseArgs(unsigned int argc, const char** argv) {
bool removeFamilySuffix = true;
std::vector<const char*> arguments(argc);
for (auto i = 0U; i < argc; i++) {
if (std::string(argv[i]) == "-output_no_suffix") {
if (std::string(argv[i]) == "-output_no_suffix" || std::string(argv[i]) == "query") {
removeFamilySuffix = false;
}
arguments[i] = argv[i];
Expand Down

0 comments on commit 08aaf56

Please sign in to comment.