Fix an unused variable introduced in rL374955 / rG21703543.

Even though this is a unit test, it still may be run under optimization.

llvm-svn: 374961
This commit is contained in:
David L. Jones 2019-10-16 00:52:00 +00:00
parent e9099f11c4
commit 001ec3eb3a

View File

@ -143,6 +143,7 @@ public:
Path.toVector(P);
std::error_code EC = makeAbsolute(P);
assert(!EC);
(void)EC;
return FilesAndDirs.find(P.str());
}