Skip to content

Commit 0781a3a

Browse files
committed
util/StringAPI: remove the unused strtok() wrapper
1 parent 734f1ef commit 0781a3a

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/util/StringAPI.hxx

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -93,12 +93,6 @@ StringFindAny(const char *haystack, const char *accept) noexcept
9393
return strpbrk(haystack, accept);
9494
}
9595

96-
static inline char *
97-
StringToken(char *str, const char *delim) noexcept
98-
{
99-
return strtok(str, delim);
100-
}
101-
10296
[[gnu::nonnull]]
10397
static inline void
10498
UnsafeCopyString(char *dest, const char *src) noexcept

0 commit comments

Comments
 (0)