Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b29c25d

Browse files
authoredJun 12, 2025··
Fix pre-commit after updating to llvm 20 (#327)
1 parent 9e0bcb5 commit b29c25d

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed
 

‎k4FWCore/include/k4FWCore/Consumer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ namespace details {
4444
: Gaudi::Functional::details::DataHandleMixin<std::tuple<>, std::tuple<>, Traits_> {
4545
using Gaudi::Functional::details::DataHandleMixin<std::tuple<>, std::tuple<>, Traits_>::DataHandleMixin;
4646

47-
static_assert(((std::is_base_of_v<podio::CollectionBase, In> || isVectorLike_v<In>)&&...),
47+
static_assert(((std::is_base_of_v<podio::CollectionBase, In> || isVectorLike_v<In>) && ...),
4848
"Consumer input types must be EDM4hep collections or vectors of collection pointers");
4949

5050
template <typename T>

‎k4FWCore/include/k4FWCore/Transformer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ namespace details {
4444
: Gaudi::Functional::details::DataHandleMixin<std::tuple<>, std::tuple<>, Traits_> {
4545
using Gaudi::Functional::details::DataHandleMixin<std::tuple<>, std::tuple<>, Traits_>::DataHandleMixin;
4646

47-
static_assert(((std::is_base_of_v<podio::CollectionBase, In> || isVectorLike_v<In>)&&...),
47+
static_assert(((std::is_base_of_v<podio::CollectionBase, In> || isVectorLike_v<In>) && ...),
4848
"Transformer and Producer input types must be EDM4hep collections or vectors of collections");
4949
static_assert((std::is_base_of_v<podio::CollectionBase, Out> || isVectorLike_v<Out> ||
5050
std::is_same_v<podio::CollectionBase*, Out>),

‎k4FWCore/scripts/k4-print-joboptions

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
#!/usr/bin/env python
2-
"""
3-
4-
5-
"""
2+
""" """
63

74
from __future__ import print_function
85
import argparse

0 commit comments

Comments
 (0)
Please sign in to comment.