Remove unused local var. Patch from STL@microsoft.com

llvm-svn: 272622
This commit is contained in:
Eric Fiselier 2016-06-14 02:55:21 +00:00
parent b03da3b65e
commit 84685fc831
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ int main()
assert(!t0.joinable());
try {
t0.detach();
} catch (std::system_error const& ec) {
} catch (std::system_error const&) {
}
}
#endif