diff options
author | hjk <qtc-committer@nokia.com> | 2011-04-06 18:39:56 +0200 |
---|---|---|
committer | hjk <qtc-committer@nokia.com> | 2011-04-06 18:40:32 +0200 |
commit | cd9aec6df93e4485a0742a02fb0cc671ab434b68 (patch) | |
tree | 0928603e5ae63b8a99993d3ad2089b4e78ef114e /tests | |
parent | 5a2c64b48233cfbba5aae1c3d10ea68b3b7b5e41 (diff) | |
download | qt-creator-cd9aec6df93e4485a0742a02fb0cc671ab434b68.tar.gz |
debugger: make original value of automatically dereferenced pointer accessible
Diffstat (limited to 'tests')
-rw-r--r-- | tests/manual/gdbdebugger/simple/simple_gdbtest_app.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/manual/gdbdebugger/simple/simple_gdbtest_app.cpp b/tests/manual/gdbdebugger/simple/simple_gdbtest_app.cpp index b32d1e29a2..6ed5ffa52d 100644 --- a/tests/manual/gdbdebugger/simple/simple_gdbtest_app.cpp +++ b/tests/manual/gdbdebugger/simple/simple_gdbtest_app.cpp @@ -2559,6 +2559,7 @@ void testMPI() int main(int argc, char *argv[]) { + int *x = new int(32); testQXmlAttributes(); testQRegExp(); testInlineBreakpoints(); |