I'm using gcc 4.8.2 and gdb 7.7.1. I am stepping through a C++ program and I want to print the contents of a vector. I've tried applying the solution mentionned here : https://stackoverflow.com/a/253101/91607
But I end up getting an error : "Cannot evaluate function -- may be inlined"
How do I resolve this ? it's a pain...
I'm trying to step through this bitcoin function('signrawtransaction') : https://github.com/bitcoin/bitcoin/blob/master/src/rpcrawtransaction.cpp#L487