Skip to content

Commit

Permalink
Remove std::copy usage. (#3550)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ozomahtli authored Jul 26, 2023
1 parent 3dec65b commit 4f46cb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/fmt/format.h
Original file line number Diff line number Diff line change
Expand Up @@ -2896,7 +2896,7 @@ class bigint {
auto size = other.bigits_.size();
bigits_.resize(size);
auto data = other.bigits_.data();
std::copy(data, data + size, bigits_.data());
copy_str<bigit>(data, data + size, bigits_.data());
exp_ = other.exp_;
}

Expand Down

0 comments on commit 4f46cb8

Please sign in to comment.