tfussell / xlnt

:bar_chart: Cross-platform user-friendly xlsx library for C++11+
Other
1.49k stars 418 forks source link

When run cell.to_string() crashes , #551

Open Guoina opened 3 years ago

Guoina commented 3 years ago

When run cell.to_string(), it crashes. it is test on master branch, vs2015. THis code uses mfc and then the crash happens. But when I use the standard windows Library, it does not happen the crash. It is wired! image void test( ){ auto cell = m_sheet.cell(iColumn, iRow); std::clog << cell.to_string() << std::endl;

}