Skip to content

Instantly share code, notes, and snippets.

@sumerman
Created September 22, 2010 19:45
Show Gist options
  • Save sumerman/592386 to your computer and use it in GitHub Desktop.
Save sumerman/592386 to your computer and use it in GitHub Desktop.
(gdb) p x < 1
$7 = true
(gdb) p x < (bx + block()->size())
$8 = false
(gdb) p (bx + block()->size())
$9 = 1
(gdb)
-------
(gdb) p x < (int)(bx + block()->size())
$10 = true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment