Skip to content
Snippets Groups Projects

Fix issue when building Gaudi with Boost 1.81

Merged Marco Clemencic requested to merge 255-fix-build-with-boost-1-81 into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -59,7 +59,7 @@ StatusCode SequentialOutputStream::execute() {
void SequentialOutputStream::makeFilename() {
if ( m_events % m_eventsPerFile != 0 ) return;
bf::path outputPath( m_outputName );
bf::path outputPath( m_outputName.value() );
string filename = outputPath.filename().string();
bf::path dir = outputPath.parent_path();
string stem = outputPath.stem().string();
Loading