Skip to content

Commit

Permalink
Clang-tidy warning fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mlxd committed May 3, 2024
1 parent ac86237 commit e8d7c33
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pennylane_lightning/core/src/utils/NDPermuter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,8 @@ template <size_t BLOCKSIZE = 1024> class DefaultPermuter {
std::vector<std::size_t> small_map_old_to_new_position(blocksize_);

// Position old and new.
std::size_t po = 0, pn;
std::size_t po = 0;
std::size_t pn = 0;
// Counter of the values of each indices in the iteration (old
// ordering).
std::vector<size_t> old_counter(num_indices, 0);
Expand Down

0 comments on commit e8d7c33

Please sign in to comment.