Skip to content

Commit

Permalink
Несколько правок
Browse files Browse the repository at this point in the history
  • Loading branch information
orefkov committed Nov 12, 2023
1 parent daa76bb commit abf3d7e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion include/core_as/str/strexpr.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ using uws = wchar_t;
using u16s = char16_t;
using u32s = char32_t;

//using size_t = size_t;// unsigned int;
using uu8s = std::make_unsigned<u8s>::type;

template<typename A, typename K>
Expand Down
2 changes: 1 addition & 1 deletion src/v8sqlite_addin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ struct ValueTableReceiver : ToTextReceiver {
void addColumnName(ssu name) {
checkColumnForDates(name);
if (name.find('\"') != str_pos::badIdx) {
lstringu<200> idName{e_repl<u16s>(name, u"\"", u"\"\"")};
lstringu<200> idName{e_repl(name, u"\"", u"\"\"")};
vtText << (eeu & u"{" & currentCol & u",\"" & idName & u"\",{\"Pattern\"},\"" & idName & u"\",0},");
} else {
vtText << (eeu & u"{" & currentCol & u",\"" & name & u"\",{\"Pattern\"},\"" & name & u"\",0},");
Expand Down

0 comments on commit abf3d7e

Please sign in to comment.