Skip to content

Commit 2e7a766

Browse files
committed
remove unused ss_data
1 parent 391af92 commit 2e7a766

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

stringdtype/stringdtype/src/static_string.c

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -107,13 +107,3 @@ ss_isnull(const ss *in)
107107
}
108108
return 0;
109109
}
110-
111-
const char *
112-
ss_data(const ss *in, const char *default_str)
113-
{
114-
if (ss_isnull(in)) {
115-
return default_str;
116-
}
117-
118-
return in->buf;
119-
}

0 commit comments

Comments
 (0)