builtin: make string.add() public temporarily till -autofree improves

pull/9440/head
Delyan Angelov 2021-03-23 20:20:53 +02:00
parent 419ee8ae2a
commit d098a3caca
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED
1 changed files with 1 additions and 1 deletions

View File

@ -500,7 +500,7 @@ fn (s string) ge(a string) bool {
// TODO `fn (s string) + (a string)` ? To be consistent with operator overloading syntax.
// add concatenates string with the string given in `s`.
fn (s string) add(a string) string {
pub fn (s string) add(a string) string {
new_len := a.len + s.len
mut res := string{
str: unsafe { malloc(new_len + 1) }