From d6c91f8ad380a896385e8701a87943c54f5ee867 Mon Sep 17 00:00:00 2001 From: Marco Clemencic <marco.clemencic@cern.ch> Date: Mon, 23 Jan 2023 15:30:09 +0100 Subject: [PATCH] Use value of property to construct boost::filesystem::path because with Boost 1.81 using directly Gaudi::Property<std::string> is ambiguous --- GaudiCommonSvc/src/PersistencySvc/SequentialOutputStream.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GaudiCommonSvc/src/PersistencySvc/SequentialOutputStream.cpp b/GaudiCommonSvc/src/PersistencySvc/SequentialOutputStream.cpp index 1cc931eb2a..0541bdd5cd 100644 --- a/GaudiCommonSvc/src/PersistencySvc/SequentialOutputStream.cpp +++ b/GaudiCommonSvc/src/PersistencySvc/SequentialOutputStream.cpp @@ -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(); -- GitLab