Merge pull request #6486 from roc-lang/remove-unused-lowlevel

Remove unused lowlevel StrGetCapacity
This commit is contained in:
Folkert de Vries 2024-02-04 13:57:46 +01:00 committed by GitHub
commit 0e7fee4e7f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 3 additions and 13 deletions

View file

@ -24,7 +24,6 @@ pub enum LowLevel {
StrGetUnsafe,
StrSubstringUnsafe,
StrReserve,
StrGetCapacity,
StrWithCapacity,
StrReleaseExcessCapacity,
ListLen,
@ -271,7 +270,6 @@ map_symbol_to_lowlevel! {
StrSubstringUnsafe <= STR_SUBSTRING_UNSAFE;
StrReserve <= STR_RESERVE;
StrToNum <= STR_TO_NUM;
StrGetCapacity <= STR_CAPACITY;
StrWithCapacity <= STR_WITH_CAPACITY;
StrReleaseExcessCapacity <= STR_RELEASE_EXCESS_CAPACITY;
ListLen <= LIST_LEN;