mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-19 14:45:08 +01:00
Merge bitcoin/bitcoin#29606: refactor: Reserve memory for ToLower/ToUpper conversions
6f2f4a4d09
Reserve memory for ToLower/ToUpper conversions (Lőrinc) Pull request description: Similarly to https://github.com/bitcoin/bitcoin/pull/29458, we're preallocating the result string based on the input string's length. The methods were already [covered by tests](https://github.com/bitcoin/bitcoin/blob/master/src/test/util_tests.cpp#L1250-L1276). ACKs for top commit: tdb3: ACK for6f2f4a4d09
maflcko: lgtm ACK6f2f4a4d09
achow101: ACK6f2f4a4d09
Empact: Code Review ACK6f2f4a4d09
stickies-v: ACK6f2f4a4d09
Tree-SHA512: e3ba7af77decdc73272d804c94fef0b11028a85f3c0ea1ed6386672611b1c35fce151f02e64f5bb5acb5ba506aaa54577719b07925b9cc745143cf5c7e5eb262
This commit is contained in:
commit
c38157b9b9
@ -446,6 +446,7 @@ bool ParseFixedPoint(std::string_view val, int decimals, int64_t *amount_out)
|
||||
std::string ToLower(std::string_view str)
|
||||
{
|
||||
std::string r;
|
||||
r.reserve(str.size());
|
||||
for (auto ch : str) r += ToLower(ch);
|
||||
return r;
|
||||
}
|
||||
@ -453,6 +454,7 @@ std::string ToLower(std::string_view str)
|
||||
std::string ToUpper(std::string_view str)
|
||||
{
|
||||
std::string r;
|
||||
r.reserve(str.size());
|
||||
for (auto ch : str) r += ToUpper(ch);
|
||||
return r;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user