From ce5b06cccc2a7e8df9e054aff84ae9dcd3d0342f Mon Sep 17 00:00:00 2001 From: Jean-Paul Chaput Date: Fri, 26 Jul 2013 11:10:45 +0000 Subject: [PATCH] * ./crlcore/src/ccore: - Bug: In Histogram.cpp, take into account the removal of boost filesystem. --- crlcore/src/ccore/Histogram.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crlcore/src/ccore/Histogram.cpp b/crlcore/src/ccore/Histogram.cpp index 5d0d0f68..f317b8fb 100644 --- a/crlcore/src/ccore/Histogram.cpp +++ b/crlcore/src/ccore/Histogram.cpp @@ -115,7 +115,7 @@ namespace CRL { toFile ( datFile.string() ); Utilities::Path pltFile ( basename+_fileExtension+".plt" ); - ofstream fd ( pltFile.string() ); + ofstream fd ( pltFile.string().c_str() ); if ( not _mainTitle.empty() ) fd << "set title \"" << _mainTitle << "\"\n";