aboutsummaryrefslogtreecommitdiff
path: root/src/sync.h
diff options
context:
space:
mode:
authorHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2022-08-10 23:18:45 +0100
committerHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2022-09-27 22:35:16 +0100
commitbff4e068b69edd40a00466156f860bde2df29268 (patch)
treec72a7191448fc084e917c6baf1159e3cf9d4d189 /src/sync.h
parent9fcdb9f3a044330d3d7515fa35709102c98534d2 (diff)
downloadbitcoin-bff4e068b69edd40a00466156f860bde2df29268.tar.xz
refactor: Do not discard `try_lock()` return value
Microsoft's C++ Standard Library uses the `[[nodiscard]]` attribute for `try_lock()`. See: https://github.com/microsoft/STL/blob/main/stl/inc/mutex This change allows to drop the current suppression for the warning C4838 and helps to prevent the upcoming warning C4858. See: https://github.com/microsoft/STL/commit/539c26c923b38cd0b5eba2bb11de4bea9d5c6e43
Diffstat (limited to 'src/sync.h')
-rw-r--r--src/sync.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/sync.h b/src/sync.h
index c34d969041..a4f4d1ac8d 100644
--- a/src/sync.h
+++ b/src/sync.h
@@ -165,8 +165,7 @@ private:
bool TryEnter(const char* pszName, const char* pszFile, int nLine)
{
EnterCritical(pszName, pszFile, nLine, Base::mutex(), true);
- Base::try_lock();
- if (!Base::owns_lock()) {
+ if (!Base::try_lock()) {
LeaveCritical();
}
return Base::owns_lock();