Skip to content

Commit

Permalink
Add missing prototype, to fix a warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
jnthn committed Mar 17, 2017
1 parent 77b9195 commit bb8eae8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/strings/ops.h
Expand Up @@ -46,6 +46,7 @@ MVM_STATIC_INLINE MVMuint32 MVM_string_codes(MVMThreadContext *tc, MVMString *s)
MVMGrapheme32 MVM_string_get_grapheme_at_nocheck(MVMThreadContext *tc, MVMString *a, MVMint64 index);
MVMint64 MVM_string_equal(MVMThreadContext *tc, MVMString *a, MVMString *b);
MVMint64 MVM_string_index(MVMThreadContext *tc, MVMString *haystack, MVMString *needle, MVMint64 start);
MVMint64 MVM_string_index_ignore_case(MVMThreadContext *tc, MVMString *haystack, MVMString *needle, MVMint64 start);
MVMint64 MVM_string_index_from_end(MVMThreadContext *tc, MVMString *haystack, MVMString *needle, MVMint64 start);
MVMString * MVM_string_concatenate(MVMThreadContext *tc, MVMString *a, MVMString *b);
MVMString * MVM_string_repeat(MVMThreadContext *tc, MVMString *a, MVMint64 count);
Expand Down

0 comments on commit bb8eae8

Please sign in to comment.