2014-05-19 67 views
0

我有使用myDll.dll的應用程序myApp.exe。 Dll編譯爲Release模式。 myQApp.exe正在以Debug配置模式運行。在將myDll.dll函數調用異常惜售:調試/發佈配置影響編譯後的二進制

Windows has triggered a breakpoint in myApp.exe. 

This may be due to a corruption of the heap, which indicates a bug in myApp.exe or any of the DLLs it has loaded. 

This may also be due to the user pressing F12 while myApp.exe has focus. 

The output window may have more diagnostic information. 

當我把DLL是與調試配置編譯一切去罰款。我應該在代碼中查找一些錯誤還是調試/發佈模式可以對此異常產生影響?

回答

0

對象定義在調試和發佈模式中是不同的。因此,如果您將這樣的對象從調試模塊傳遞到發佈模塊,錯誤並不意外。這並不意味着你有一個錯誤。

相關問題