-
Notifications
You must be signed in to change notification settings - Fork 430
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
a bug about memory leak in MFC #744
Comments
"MFC console application" |
In addition I did the following testcase: |
I think this bug is not focused on MFC console application. |
Hi
I use xlnt in visual studio 2022 ,install it from vcpkg.
I create a console app with default template ,and then call xlnt , it works fine.
but i create a MFC console application with default template, even if only defined a workbook object,there will be a lot of memory leak. like this:
int main()
{
xlnt::workbook wb;
return 0;
}
when I create a windows desktop app, xlnt works fine! but if create a MFC windows desktop app, there will be a lot of memory leak.
The text was updated successfully, but these errors were encountered: