Skip to content

Commit 0a72b28

Browse files
github-actions[bot]greenc-FNAL
authored andcommitted
Apply clang-format fixes
1 parent 844b49f commit 0a72b28

File tree

10 files changed

+17
-14
lines changed

10 files changed

+17
-14
lines changed

phlex/core/detail/make_algorithm_name.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ namespace phlex::experimental {
1616
class algorithm_name;
1717

1818
namespace detail {
19-
phlex_core_EXPORT algorithm_name make_algorithm_name(configuration const* config, std::string name);
19+
phlex_core_EXPORT algorithm_name make_algorithm_name(configuration const* config,
20+
std::string name);
2021
}
2122
}
2223

phlex/core/detail/maybe_predicates.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ namespace phlex {
1515
}
1616

1717
namespace phlex::experimental::detail {
18-
phlex_core_EXPORT std::optional<std::vector<std::string>> maybe_predicates(configuration const* config);
18+
phlex_core_EXPORT std::optional<std::vector<std::string>> maybe_predicates(
19+
configuration const* config);
1920
}
2021

2122
#endif // PHLEX_CORE_DETAIL_MAYBE_PREDICATES_HPP

phlex/core/edge_maker.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ namespace phlex::experimental {
2525

2626
using product_name_t = std::string;
2727

28-
phlex_core_EXPORT multiplexer::input_ports_t
29-
make_provider_edges(multiplexer::head_ports_t head_ports, declared_providers& providers);
28+
phlex_core_EXPORT multiplexer::input_ports_t make_provider_edges(
29+
multiplexer::head_ports_t head_ports, declared_providers& providers);
3030

3131
class edge_maker {
3232
public:

phlex/core/input_arguments.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ namespace phlex::experimental {
3131

3232
namespace detail {
3333
phlex_core_EXPORT void verify_no_duplicate_input_products(std::string const& algorithm_name,
34-
product_queries to_sort);
34+
product_queries to_sort);
3535
}
3636

3737
template <typename InputTypes>

phlex/core/message.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ namespace phlex::experimental {
6868
}
6969

7070
phlex_core_EXPORT std::size_t port_index_for(product_queries const& product_labels,
71-
product_query const& product_label);
71+
product_query const& product_label);
7272

7373
template <std::size_t I, std::size_t N>
7474
tbb::flow::receiver<message>& receiver_for(detail::join_messages_t<N>& join,

phlex/core/registrar.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@
5959
namespace phlex::experimental {
6060

6161
namespace detail {
62-
phlex_core_EXPORT void add_to_error_messages(std::vector<std::string>& errors, std::string const& name);
62+
phlex_core_EXPORT void add_to_error_messages(std::vector<std::string>& errors,
63+
std::string const& name);
6364
}
6465

6566
template <typename Ptr>

phlex/model/data_cell_index.hpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,7 @@ namespace phlex {
3636
std::string to_string() const;
3737
std::string to_string_this_layer() const;
3838

39-
friend phlex_model_EXPORT std::ostream& operator<<(std::ostream& os,
40-
data_cell_index const& id);
39+
friend phlex_model_EXPORT std::ostream& operator<<(std::ostream& os, data_cell_index const& id);
4140

4241
private:
4342
data_cell_index();

phlex/model/identifier.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ namespace phlex::experimental {
4141

4242
// Comparison operators with _id queries
4343
phlex_model_EXPORT friend bool operator==(identifier const& lhs, identifier_query rhs);
44-
phlex_model_EXPORT friend std::strong_ordering operator<=>(identifier const& lhs, identifier_query rhs);
44+
phlex_model_EXPORT friend std::strong_ordering operator<=>(identifier const& lhs,
45+
identifier_query rhs);
4546
friend std::hash<identifier>;
4647

4748
private:

phlex/model/product_specification.hpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,8 @@ namespace phlex::experimental {
4040

4141
using product_specifications = std::vector<product_specification>;
4242

43-
phlex_model_EXPORT product_specifications to_product_specifications(std::string name,
44-
std::vector<std::string> output_labels,
45-
std::vector<type_id> output_types);
43+
phlex_model_EXPORT product_specifications to_product_specifications(
44+
std::string name, std::vector<std::string> output_labels, std::vector<type_id> output_types);
4645
}
4746

4847
#endif // PHLEX_MODEL_PRODUCT_SPECIFICATION_HPP

phlex/model/product_store.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ namespace phlex::experimental {
6060
stage stage_;
6161
};
6262

63-
phlex_model_EXPORT product_store_ptr const& more_derived(product_store_ptr const& a, product_store_ptr const& b);
63+
phlex_model_EXPORT product_store_ptr const& more_derived(product_store_ptr const& a,
64+
product_store_ptr const& b);
6465

6566
template <std::size_t I, typename Tuple, typename Element>
6667
Element const& get_most_derived(Tuple const& tup, Element const& element)

0 commit comments

Comments
 (0)