Simulator: Fix a ugly bug that happens is some simulations

TRhe initial code was broken.
This commit is contained in:
jean-pierre charras 2021-03-08 19:49:46 +01:00
parent 3d563af758
commit 14b1d36b38
1 changed files with 2 additions and 1 deletions

View File

@ -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 );
}
}