Remove unused lowlevel StrGetCapacity

This commit is contained in:
Richard Feldman 2024-02-01 21:36:19 -05:00
parent fc6b519b59
commit f79ff6d496
No known key found for this signature in database
GPG key ID: F1F21AA5B1D9E43B
6 changed files with 3 additions and 13 deletions

View file

@ -1533,8 +1533,8 @@ fn low_level_no_rc(lowlevel: &LowLevel) -> RC {
match lowlevel {
Unreachable => RC::Uknown,
ListLen | StrIsEmpty | StrCountUtf8Bytes | StrGetCapacity | ListGetCapacity
| ListWithCapacity | StrWithCapacity => RC::NoRc,
ListLen | StrIsEmpty | StrCountUtf8Bytes | ListGetCapacity | ListWithCapacity
| StrWithCapacity => RC::NoRc,
ListReplaceUnsafe => RC::Rc,
StrGetUnsafe | ListGetUnsafe => RC::NoRc,
ListConcat => RC::Rc,