c++ - changing std::vector<double> debugger view -
it possible extend visual studio (2012) debugger shown in many places (e.g. here, here , important here). i'm trying change how debugger shows std::vector<double>
. goal when copy paste data vector in watch window program (e.g. matlab, excel,etc) data appear list of values instead of table additional data.
for example, in current status when copy-paste data vector this:
[0] 94.024513667772339 double [1] 104.70544392511518 double [2] 121.33423324928492 double [3] 132.01724343105604 double [4] 148.59977457595494 double
what i'm trying achieve this:
94.024513667772339 104.70544392511518 121.33423324928492 132.01724343105604 148.59977457595494
can accomplished using custom debugger?
Comments
Post a Comment