Simulator: Fix a ugly bug that happens is some simulations
TRhe initial code was broken.
This commit is contained in:
parent
3d563af758
commit
14b1d36b38
|
@ -87,10 +87,11 @@ vector<string> NGSPICE::AllPlots() const
|
|||
noOfPlots++;
|
||||
|
||||
retVal.reserve( noOfPlots );
|
||||
|
||||
for( int i = 0; i < noOfPlots; i++, allPlots++ )
|
||||
{
|
||||
string vec = *allPlots;
|
||||
retVal.at( i ) = vec;
|
||||
retVal.push_back( vec );
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue