public inbox for gdb-prs@sourceware.org
help / color / mirror / Atom feed
* [Bug python/10659] New: pretty-printing: Display vectors of vectors as matrix
@ 2009-09-18 17:18 jan dot kratochvil at redhat dot com
  2010-04-29 16:13 ` [Bug python/10659] " cmoller at redhat dot com
  0 siblings, 1 reply; 5+ messages in thread
From: jan dot kratochvil at redhat dot com @ 2009-09-18 17:18 UTC (permalink / raw)
  To: gdb-prs

Vector of vectors is currently displayed as:
(gdb) p test
$1 = std::vector of length 2, capacity 2 = {std::vector of length 2, capacity 2
= {0, 1}, std::vector of length 2, capacity 2 = {2, 3}}

while user suggested something like:
(gdb) p test
$1 = std::vector of length 2, capacity 2 = {std::vector of length 2, capacity 2
= {0, 1}, std::vector of length 2, capacity 2 = {2, 3}}
matrix contents = 
0 2
1 3

Testcase:
#include <vector>
#include <iostream>

int main(){
  std::vector< std::vector<int> > test(2, std::vector<int>(2,0));
  test[0][0]=0;
  test[0][1]=1;
  test[1][0]=2;
  test[1][1]=3;

  int a=test[1][0];
  std::cout << a;
}

-- 
           Summary: pretty-printing: Display vectors of vectors as matrix
           Product: gdb
           Version: archer
            Status: UNCONFIRMED
          Severity: enhancement
          Priority: P2
         Component: python
        AssignedTo: unassigned at sourceware dot org
        ReportedBy: jan dot kratochvil at redhat dot com
                CC: gdb-prs at sourceware dot org,pmuldoon at redhat dot
                    com,tromey at redhat dot com


http://sourceware.org/bugzilla/show_bug.cgi?id=10659

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 5+ messages in thread
[parent not found: <bug-10659-4717@http.sourceware.org/bugzilla/>]

end of thread, other threads:[~2023-09-26 15:35 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-09-18 17:18 [Bug python/10659] New: pretty-printing: Display vectors of vectors as matrix jan dot kratochvil at redhat dot com
2010-04-29 16:13 ` [Bug python/10659] " cmoller at redhat dot com
     [not found] <bug-10659-4717@http.sourceware.org/bugzilla/>
2023-08-31 16:59 ` tromey at sourceware dot org
2023-08-31 20:01 ` tromey at sourceware dot org
2023-09-26 15:35 ` tromey at sourceware dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).