Skip to content

Commit

Permalink
Add the ability to not remap unit files
Browse files Browse the repository at this point in the history
I'd like to have the ability to copy unit files without
remapping them. For this PR MobileNativeFoundation#53
we still need to read in the unit files but not mutate the material.
This PR just removes the requirement on "remap" arg.
  • Loading branch information
jerrymarino committed Feb 22, 2021
1 parent 44fbe01 commit 0627e94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index-import.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ using namespace clang;
using namespace clang::index;
using namespace clang::index::writer;

static cl::list<std::string> PathRemaps("remap", cl::OneOrMore,
static cl::list<std::string> PathRemaps("remap",
cl::desc("Path remapping substitution"),
cl::value_desc("regex=replacement"));
static cl::alias PathRemapsAlias("r", cl::aliasopt(PathRemaps));
Expand Down

0 comments on commit 0627e94

Please sign in to comment.