@@ -17,16 +17,16 @@ namespace cppfig {
1717// / @endcode
1818struct SingleThreadedPolicy {
1919 // / @brief No-op mutex type (lower_case to satisfy C++ BasicLockable/SharedLockable).
20- struct mutex_type { // NOLINT(readability-identifier-naming)
21- void lock () {} // NOLINT(readability-identifier-naming) LCOV_EXCL_LINE
22- void unlock () {} // NOLINT(readability-identifier-naming) LCOV_EXCL_LINE
23- void lock_shared () {} // NOLINT(readability-identifier-naming) LCOV_EXCL_LINE
24- void unlock_shared () {} // NOLINT(readability-identifier-naming) LCOV_EXCL_LINE
20+ struct mutex_type { // NOLINT(readability-identifier-naming)
21+ void lock () { } // NOLINT(readability-identifier-naming) LCOV_EXCL_LINE
22+ void unlock () { } // NOLINT(readability-identifier-naming) LCOV_EXCL_LINE
23+ void lock_shared () { } // NOLINT(readability-identifier-naming) LCOV_EXCL_LINE
24+ void unlock_shared () { } // NOLINT(readability-identifier-naming) LCOV_EXCL_LINE
2525 };
2626
2727 // / @brief No-op shared (reader) lock (mirrors std::shared_lock).
2828 struct shared_lock { // NOLINT(readability-identifier-naming)
29- explicit shared_lock (mutex_type& /* unused*/ ) {}
29+ explicit shared_lock (mutex_type& /* unused*/ ) { }
3030 ~shared_lock () = default ;
3131
3232 shared_lock (const shared_lock&) = delete ;
@@ -37,7 +37,7 @@ struct SingleThreadedPolicy {
3737
3838 // / @brief No-op unique (writer) lock (mirrors std::unique_lock).
3939 struct unique_lock { // NOLINT(readability-identifier-naming)
40- explicit unique_lock (mutex_type& /* unused*/ ) {}
40+ explicit unique_lock (mutex_type& /* unused*/ ) { }
4141 ~unique_lock () = default ;
4242
4343 unique_lock (const unique_lock&) = delete ;
0 commit comments