Skip to content

Commit

Permalink
Minor cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
gibber9809 committed Oct 21, 2024
1 parent 33d13f0 commit c84c771
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions components/core/src/clp_s/Utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -431,9 +431,8 @@ bool StringUtils::tokenize_column_descriptor(
std::string const& descriptor,
std::vector<std::string>& tokens
) {
// TODO: add support for unicoce sequences e.g. \u263A
// TODO: add support for unicode sequences e.g. \u263A
std::string cur_tok;
size_t cur = 0;
for (size_t cur = 0; cur < descriptor.size(); ++cur) {
if ('\\' == descriptor[cur]) {
++cur;
Expand Down

0 comments on commit c84c771

Please sign in to comment.