forked from fmtlib/fmt
Remove std::copy usage. (#3550)
This commit is contained in:
@ -2896,7 +2896,7 @@ class bigint {
|
|||||||
auto size = other.bigits_.size();
|
auto size = other.bigits_.size();
|
||||||
bigits_.resize(size);
|
bigits_.resize(size);
|
||||||
auto data = other.bigits_.data();
|
auto data = other.bigits_.data();
|
||||||
std::copy(data, data + size, bigits_.data());
|
copy_str<bigit>(data, data + size, bigits_.data());
|
||||||
exp_ = other.exp_;
|
exp_ = other.exp_;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user