Skip to content

Commit 11cfc9f

Browse files
committed
Update to use std::format
1 parent 2553a20 commit 11cfc9f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

FWIO/RNTupleTempInput/src/RootInputFileSequence.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -281,11 +281,11 @@ namespace edm::rntuple_temp {
281281
throw ex;
282282
} else {
283283
exInfo.push_back("Calling RootInputFileSequence::initTheFile(): fail to open the file with name " + (*it));
284-
additionalMessage.push_back(fmt::format(
284+
additionalMessage.push_back(std::format(
285285
"Input file {} could not be opened, and fallback was attempted.\nAdditional information:", *it));
286286
char c = 'a';
287287
for (auto const& ai : e.additionalInfo()) {
288-
additionalMessage.push_back(fmt::format(" [{}] {}", c, ai));
288+
additionalMessage.push_back(std::format(" [{}] {}", c, ai));
289289
++c;
290290
}
291291
}

0 commit comments

Comments
 (0)