diff options
| author | gingerBill <bill@gingerbill.org> | 2021-08-08 12:48:44 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-08-08 12:48:44 +0100 |
| commit | 5fd64f48eed57350e6c3fe6203915dfc68452b08 (patch) | |
| tree | f90f91b5aefeacdc7cf365ef75cecaf71a71381d /src/tokenizer.cpp | |
| parent | a3b71268758ac93e2d46f8b3d161d5315c4c8295 (diff) | |
Minor procedure rename
Diffstat (limited to 'src/tokenizer.cpp')
| -rw-r--r-- | src/tokenizer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tokenizer.cpp b/src/tokenizer.cpp index 17529382c..e851d491b 100644 --- a/src/tokenizer.cpp +++ b/src/tokenizer.cpp @@ -804,7 +804,7 @@ void init_tokenizer_with_data(Tokenizer *t, String const &fullpath, void *data, } } -TokenizerInitError init_tokenizer(Tokenizer *t, String const &fullpath, TokenizerFlags flags = TokenizerFlag_None) { +TokenizerInitError init_tokenizer_from_fullpath(Tokenizer *t, String const &fullpath, TokenizerFlags flags = TokenizerFlag_None) { TokenizerInitError err = TokenizerInit_None; char *c_str = alloc_cstring(heap_allocator(), fullpath); |