[libc][signal] remove wrongly added constexpr (#190424)

Hotfix for CI failure
This commit is contained in:
Schrodinger ZHU Yifan 2026-04-03 19:04:20 -04:00 committed by GitHub
parent b0a54bec9b
commit d6534f437d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -133,7 +133,7 @@ private:
LIBC_INLINE_VAR static RawRwLock abort_lock;
public:
LIBC_INLINE constexpr SigAbortGuard(bool exclusive) : old_mask{} {
LIBC_INLINE SigAbortGuard(bool exclusive) : old_mask{} {
RawRwLock::LockResult result = RawRwLock::LockResult::Success;
do {
if (exclusive)