Skip to content

Commit

Permalink
fix debug hash function
Browse files Browse the repository at this point in the history
  • Loading branch information
kamikat committed Apr 10, 2016
1 parent 5eaeb73 commit 96aa604
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/debug.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#include <iostream>
#include <iomanip>
#define DEBUG(expr) std::cerr << "DEBUG " << expr << std::endl
#define HEX(x) std::setw(2) << std::setfill('0') << std::hex << (int)(x) << std::setw(0) << std::dec
#define HEX(x) std::setw(2) << std::setfill('0') << std::hex << (uint64_t)(x) << std::setw(0) << std::dec
#else
#define DEBUG(expr)
#endif
Expand Down

0 comments on commit 96aa604

Please sign in to comment.