Output pointer values correctly for 64-bit systems
This commit is contained in:
parent
7fae606d62
commit
5ddb0e9bfb
1 changed files with 1 additions and 1 deletions
|
|
@ -637,7 +637,7 @@ bool expr_t::op_t::print(std::ostream& out, const context_t& context) const
|
|||
void expr_t::op_t::dump(std::ostream& out, const int depth) const
|
||||
{
|
||||
out.setf(std::ios::left);
|
||||
out.width(10);
|
||||
out.width((sizeof(void *) * 2) + 2);
|
||||
out << this;
|
||||
|
||||
for (int i = 0; i < depth; i++)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue