Skip to content

Commit a46773a

Browse files
Fix unused variable warnings in COVERAGE mode
1 parent c1620c8 commit a46773a

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/util.h

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,7 @@ static SECP256K1_INLINE void secp256k1_callback_call(const secp256k1_callback *
5858
#endif
5959

6060
/* Like assert(), but when VERIFY is defined, and side-effect safe. */
61-
#if defined(COVERAGE)
62-
#define VERIFY_CHECK(check)
63-
#define VERIFY_SETUP(stmt)
64-
#elif defined(VERIFY)
61+
#if defined(VERIFY)
6562
#define VERIFY_CHECK CHECK
6663
#define VERIFY_SETUP(stmt) do { stmt; } while(0)
6764
#else

0 commit comments

Comments
 (0)