From 9c4244186b38258f956b7d2968353a4d2969e182 Mon Sep 17 00:00:00 2001 From: "Matthew L. Fidler" Date: Wed, 3 Apr 2024 18:41:37 -0500 Subject: [PATCH] Added some prints to see which column is causing the issue --- src/et.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/et.cpp b/src/et.cpp index f7907e2..47f6046 100644 --- a/src/et.cpp +++ b/src/et.cpp @@ -500,6 +500,7 @@ List etSort(List& curEt){ tmpI2 = curEt[j]; tmpI[i] = tmpI2[idx[i]]; } else if (rxIsChar(curEt[j])){ + REprintf("newSize: %d, j: %d\n", newSize, j); if (i == newSize-1) newEt[j] = CharacterVector(newSize); tmpC=newEt[j]; tmpC2 = curEt[j];