Skip to content

Commit

Permalink
fix: missing param name
Browse files Browse the repository at this point in the history
  • Loading branch information
StRigaud committed Nov 21, 2023
1 parent cac3cea commit eb8d681
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clic/include/tier7.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ namespace cle::tier7
// translate

auto
closing_labels_func(const Device::Pointer & device, const Array::Pointer & src, Array::Pointer, int radius)
closing_labels_func(const Device::Pointer & device, const Array::Pointer & src, Array::Pointer dst, int radius)
-> Array::Pointer;

auto
opening_labels_func(const Device::Pointer & device, const Array::Pointer & src, Array::Pointer, int radius)
opening_labels_func(const Device::Pointer & device, const Array::Pointer & src, Array::Pointer dst, int radius)
-> Array::Pointer;

auto
Expand Down

0 comments on commit eb8d681

Please sign in to comment.