Skip to content

Commit ece0c3c

Browse files
authored
Merge pull request #92 from alibuild/alibot-cleanup-14185
2 parents f339978 + 607d745 commit ece0c3c

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Framework/Core/include/Framework/Expressions.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,6 @@ struct ParameterNode : LiteralNode {
189189
struct ConditionalNode {
190190
};
191191

192-
193192
/// concepts
194193
template <typename T>
195194
concept is_literal_like = std::same_as<T, LiteralNode> || std::same_as<T, PlaceholderNode> || std::same_as<T, ParameterNode>;

Framework/Core/src/Expressions.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ Operations createOperations(Filter const& expression)
246246

247247
auto processLeaf = [](Node const* const node) {
248248
return std::visit(
249-
[](auto const& n){return makeDatum(n);},
249+
[](auto const& n) { return makeDatum(n); },
250250
node->self);
251251
};
252252

@@ -261,7 +261,7 @@ Operations createOperations(Filter const& expression)
261261
// create operation spec, pop the node and add its children
262262
auto operationSpec =
263263
std::visit(
264-
[&](auto const& n){ return makeOp(n, top.node_ptr->index); },
264+
[&](auto const& n) { return makeOp(n, top.node_ptr->index); },
265265
top.node_ptr->self);
266266

267267
operationSpec.result = DatumSpec{top.index, operationSpec.type};

0 commit comments

Comments
 (0)