1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 05:01:59 +01:00

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 5eefec9e6d
commit 5dbc902c8f

View File

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