Avoid a compiler warning about Found not being used when assertions are

disabled.

llvm-svn: 190668
This commit is contained in:
Duncan Sands 2013-09-13 08:16:06 +00:00
parent 70c93d3b1c
commit c9e95ad0db
1 changed files with 1 additions and 0 deletions

View File

@ -367,6 +367,7 @@ namespace {
}
}
assert(Found && "Capturing call-site captured nothing?");
(void)Found;
return false;
}