Skip to content
Snippets Groups Projects
Commit 139ae839 authored by Mickael Savinaud's avatar Mickael Savinaud
Browse files

ENH: use temp string allocation to correct error in test VectorDataRendering

parent d926d068
No related branches found
No related tags found
No related merge requests found
......@@ -80,7 +80,8 @@ int main( int argc, char * argv[] )
else if (argc == 6)
{
inFont = true;
fontfilename( argv[5] );
const string fontFilenameArg = argv[5];
fontfilename.assign(fontFilenameArg );
}
else if (argc != 4)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment