Skip to content

Commit 166a10b

Browse files
authored
Merge pull request #6 from popoffka/fix-fmt
Fix FMT
2 parents 693fcc6 + ca6413d commit 166a10b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/common/utils.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ template<typename ... Types>
4343
void UNUSED(Types&&...) {}
4444

4545
#ifdef DEBUG
46-
#define FMT FORMAT
46+
#define FMT libff::FORMAT
4747
#else
48-
#define FMT UNUSED
48+
#define FMT(...) (libff::UNUSED(__VA_ARGS__), "")
4949
#endif
5050

5151
void serialize_bit_vector(std::ostream &out, const bit_vector &v);

0 commit comments

Comments
 (0)