You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{ cout << "ABORTING due to " << el.error_list.size() + " errors:" << endl;
I missed changing the + operator to << during the original translation from Python. el.error_list.size() + " errors:" is evaluated as an integer + a char pointer, and wacky antics ensue.
DataProcessing/siteupdate/cplusplus/siteupdate.cpp
Line 941 in 5c69952
I missed changing the
+operator to<<during the original translation from Python.el.error_list.size() + " errors:"is evaluated as an integer + a char pointer, and wacky antics ensue.