mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-26 20:20:04 +00:00
Remove std::copy usage. (#3550)
This commit is contained in:
parent
3dec65b7fd
commit
4f46cb82f3
@ -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_;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user