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

Fix issue when building Gaudi with Boost 1.81

Closes #255

See merge request !1413
parents db183448 d6c91f8a
No related branches found
No related tags found
1 merge request!1413Fix issue when building Gaudi with Boost 1.81
Pipeline #5040105 passed
......@@ -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();
......
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