Skip to content
Snippets Groups Projects
Commit 120d966c authored by Marco Clemencic's avatar Marco Clemencic
Browse files

Another small fix to build on macOS

See merge request !1405
parents 2b5efb70 1b0055a3
No related branches found
No related tags found
1 merge request!1405Another small fix to build on macOS
Pipeline #4964235 passed
......@@ -630,7 +630,7 @@ namespace concurrency {
void PrecedenceRulesGraph::dumpPrecRules( const boost::filesystem::path& fileName, const EventSlot& slot ) {
std::ofstream myfile;
myfile.open( fileName, std::ios::app );
myfile.open( fileName.c_str(), std::ios::app );
// Declare properties to dump
boost::dynamic_properties dp;
......@@ -671,7 +671,7 @@ namespace concurrency {
//---------------------------------------------------------------------------
void PrecedenceRulesGraph::dumpPrecTrace( const boost::filesystem::path& fileName, const EventSlot& slot ) {
std::ofstream myfile;
myfile.open( fileName, std::ios::app );
myfile.open( fileName.c_str(), std::ios::app );
// Fill runtimes (as this could not be done on the fly during trace assembling)
SmartIF<ITimelineSvc> timelineSvc = m_svcLocator->service<ITimelineSvc>( "TimelineSvc", false );
......
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