Skip to content

Commit

Permalink
append if xltypeStr bit is set
Browse files Browse the repository at this point in the history
  • Loading branch information
keithalewis committed Nov 16, 2022
1 parent 51ed879 commit 307d5d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xll/oper.h
Expand Up @@ -328,7 +328,7 @@ namespace xll {
XOPER<X> xNum = XExcel<X>(xlfText, x, xGeneral);
append(xNum.val.str + 1, xNum.val.str[0]);
}
else if (x.xltype == xltypeStr) {
else if (xll::type(x) == xltypeStr) {
append(x.val.str + 1, x.val.str[0]);
}
else {
Expand Down

0 comments on commit 307d5d6

Please sign in to comment.