Skip to content
Snippets Groups Projects

deprecate no longer required concat_alternatives

Merged Gerhard Raven requested to merge deprecate_concat_alternatives into master
All threads resolved!
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -25,7 +25,7 @@ namespace Gaudi::Functional {
template <typename... Strings>
[[deprecated]] std::string concat_alternatives( const Strings&... s ) {
return concat_alternatives( std::initializer_list<std::string>{ s... } );
return boost::algorithm::join( std::initializer_list<std::string>{ s... }, ":" );
}
[[deprecated( "please use `updateHandleLocation` instead of `Gaudi::Functional::updateHandleLocation`" )]] inline void
Loading