diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2019-04-25 20:00:06 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2019-04-25 20:00:06 +0000 |
commit | 65d4d5e9e7bb06153ffd9de9b7ad7a1a676d36fc (patch) | |
tree | 90bd0c42651505e0fb3b00ce14fc84fae0e4e724 /lldb/packages/Python/lldbsuite/test/python_api/default-constructor | |
parent | 3bf8d7639f49b03ddb80fbc107a0f67fe03397f6 (diff) | |
download | bcm5719-llvm-65d4d5e9e7bb06153ffd9de9b7ad7a1a676d36fc.tar.gz bcm5719-llvm-65d4d5e9e7bb06153ffd9de9b7ad7a1a676d36fc.zip |
Fix buildbot failures after r359159.
std::mutex was not actually is_nothrow_default_constructible in C++98/C++03,
because the variable declaration
std::mutex M;
... could throw an exception from the mutex destructor. Fix it by marking the
destructor as non-throwing. This has no effect in C++11 onwards, because
destructors are non-throwing by default in those language modes.
llvm-svn: 359229
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/python_api/default-constructor')
0 files changed, 0 insertions, 0 deletions