Use ofstream from std
3 unresolved threads
3 unresolved threads
Spack installation of Gaudi@36.5:
error: 'ofstream' is not a member of 'boost::filesystem'; did you mean 'std::ofstream'?
boost::filesystem::ofstream myfile;
This patch was suggested in https://github.com/spack/spack/pull/30281, which fixes the error.
Merge request reports
Activity
assigned to @clemenci
changed milestone to %v36r6
Yes, it seems like (parts of) the boost filesystem module is being deprecated: https://www.boost.org/users/history/version_1_79_0.html
enabled an automatic merge when the pipeline for cb3ae4ac succeeds
mentioned in commit 03db1510
629 629 //--------------------------------------------------------------------------- 630 630 631 631 void PrecedenceRulesGraph::dumpPrecRules( const boost::filesystem::path& fileName, const EventSlot& slot ) { 632 boost::filesystem::ofstream myfile; 632 std::ofstream myfile; 633 633 myfile.open( fileName, std::ios::app ); - Comment on lines +632 to 633
670 670 671 671 //--------------------------------------------------------------------------- 672 672 void PrecedenceRulesGraph::dumpPrecTrace( const boost::filesystem::path& fileName, const EventSlot& slot ) { 673 boost::filesystem::ofstream myfile; 673 std::ofstream myfile; 674 674 myfile.open( fileName, std::ios::app ); - Comment on lines +673 to 674
mentioned in merge request atlas/athena!55604 (closed)
Please register or sign in to reply