From e6eef77d3542dffcf958c597c932eda87261886d Mon Sep 17 00:00:00 2001
From: hjk <qtc-committer@nokia.com>
Date: Thu, 7 Oct 2010 16:12:52 +0200
Subject: [PATCH] debugger: python dumper for std::stack was tested but not
 implemented

Reviewed-by: Leandro Melo
Task-number: QTCREATORBUG-2665
---
 share/qtcreator/gdbmacros/gdbmacros.py | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/share/qtcreator/gdbmacros/gdbmacros.py b/share/qtcreator/gdbmacros/gdbmacros.py
index 0a0bcec04dc..6c08f19da87 100644
--- a/share/qtcreator/gdbmacros/gdbmacros.py
+++ b/share/qtcreator/gdbmacros/gdbmacros.py
@@ -2048,6 +2048,11 @@ def qdump__std__set(d, item):
                         node = node["_M_left"]
 
 
+def qdump__std__stack(d, item):
+    data = item.value["c"]
+    qdump__std__deque(d, Item(data, item.iname))
+
+
 def qdump__std__string(d, item):
     data = item.value["_M_dataplus"]["_M_p"]
     baseType = item.value.type.unqualified().strip_typedefs()
-- 
GitLab