Skip to content

Commit

Permalink
Correct return data type for UTF8-specific functions
Browse files Browse the repository at this point in the history
  • Loading branch information
dcamper committed Apr 17, 2024
1 parent 4feb08e commit 99be78d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ecl/hqlcpp/hqlcppsys.ecl
Original file line number Diff line number Diff line change
Expand Up @@ -570,8 +570,8 @@ const char * cppSystemText[] = {
" regexNewSetU8StrPattern(const utf8 _pattern, boolean isCaseSensitive) : omethod,entrypoint='setPattern',time('CompileUTF8Regex');"
" regexNewU8StrFind(boolean _compiled, const utf8 _search, boolean _cloneSearch) : omethod,entrypoint='find',time('REGEXFIND');"
" boolean regexNewU8StrFound() : method,pure,entrypoint='found';"
" unicode regexNewU8StrFoundX(unsigned4 idx) : method,pure,entrypoint='getMatchX';"
" unicode regexNewU8StrReplaceX(const utf8 _search, const utf8 _replace) : method,pure,entrypoint='replace',time('REGEXREPLACE');"
" utf8 regexNewU8StrFoundX(unsigned4 idx) : method,pure,entrypoint='getMatchX';"
" utf8 regexNewU8StrReplaceX(const utf8 _search, const utf8 _replace) : method,pure,entrypoint='replace',time('REGEXREPLACE');"
" set of utf8 regexU8StrMatchSet(const utf8 _search) : method,pure,entrypoint='getMatchSet',time('REGEXFINDSET');"

//clibrary functions that are called from the code generation
Expand Down

0 comments on commit 99be78d

Please sign in to comment.