mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-12-08 11:44:14 +01:00
Fixup clang-tidy named argument comments
Fix comments so they are checked/consistent. Fix incorrect arguments.
This commit is contained in:
@@ -107,12 +107,12 @@ BOOST_AUTO_TEST_CASE(potential_deadlock_detected)
|
||||
#ifdef DEBUG_LOCKORDER
|
||||
BOOST_AUTO_TEST_CASE(double_lock_mutex)
|
||||
{
|
||||
TestDoubleLock<Mutex>(true /* should throw */);
|
||||
TestDoubleLock<Mutex>(/*should_throw=*/true);
|
||||
}
|
||||
|
||||
BOOST_AUTO_TEST_CASE(double_lock_recursive_mutex)
|
||||
{
|
||||
TestDoubleLock<RecursiveMutex>(false /* should not throw */);
|
||||
TestDoubleLock<RecursiveMutex>(/*should_throw=*/false);
|
||||
}
|
||||
#endif /* DEBUG_LOCKORDER */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user