Skip to content

Commit

Permalink
Fix clang-tidy issues in experimental fil.
Browse files Browse the repository at this point in the history
  • Loading branch information
csadorf committed Jul 7, 2023
1 parent 48266aa commit 52f6cff
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ struct buffer {
}
return result;
}()},
data_{[this, input_data, mem_type]() {
data_{[input_data, mem_type]() {
auto result = data_store{};
switch (mem_type) {
case device_type::cpu: result = non_owning_buffer<device_type::cpu, T>{input_data}; break;
Expand Down Expand Up @@ -134,7 +134,7 @@ struct buffer {
}
return result;
}()},
data_{[this, &other, mem_type, device, stream]() {
data_{[this, &other, mem_type, stream]() {
auto result = data_store{};
auto result_data = static_cast<T*>(nullptr);
if (mem_type == device_type::cpu) {
Expand Down

0 comments on commit 52f6cff

Please sign in to comment.