print int instead of int64_t in expression
This commit is contained in:
parent
4b5a124aa1
commit
5f3c72389c
|
@ -173,7 +173,8 @@ T &&dbg_print(T &&value, std::string const& type, char const *file, int line,
|
|||
soi::print(value_buffer, ref);
|
||||
|
||||
std::cerr << ANSI_DEBUG << "[" << file << ":" << line << " (" << function_name
|
||||
<< ")] " << ANSI_RESET << ANSI_EXPRESSION << expression
|
||||
<< ")] " << ANSI_RESET << ANSI_EXPRESSION
|
||||
<< replace_all(expression, "int64_t", "int")
|
||||
<< ANSI_RESET << " = " << ANSI_VALUE << value_buffer.rdbuf()
|
||||
<< ANSI_RESET << " (" << ANSI_TYPE << type << ANSI_RESET << ")"
|
||||
<< '\n';
|
||||
|
|
Loading…
Reference in New Issue