mirror of
https://github.com/catchorg/Catch2.git
synced 2025-01-23 01:03:29 +01:00
Suppress -Wexit-time-destructors
This commit is contained in:
parent
47458af263
commit
b97392b2a4
@ -7,8 +7,17 @@
|
|||||||
// SPDX-License-Identifier: BSL-1.0
|
// SPDX-License-Identifier: BSL-1.0
|
||||||
#include <catch2/internal/catch_global_lock.hpp>
|
#include <catch2/internal/catch_global_lock.hpp>
|
||||||
|
|
||||||
|
#if defined(__clang__)
|
||||||
|
# pragma clang diagnostic push
|
||||||
|
# pragma clang diagnostic ignored "-Wexit-time-destructors"
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace Catch {
|
namespace Catch {
|
||||||
|
|
||||||
std::recursive_mutex global_lock;
|
std::recursive_mutex global_lock;
|
||||||
|
|
||||||
} // namespace Catch
|
} // namespace Catch
|
||||||
|
|
||||||
|
#if defined(__clang__)
|
||||||
|
# pragma clang diagnostic pop
|
||||||
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user