Details
-
Bug
-
Resolution: Invalid
-
Not Evaluated
-
None
-
6.6.0
-
None
Description
Hi,
I wanted to test Qt 6.6 with a CMake project I created some years ago. In this project, I disabled RTTI (with /GR- for Visual C++ 2022) because Qt is not using it. As soon as I try to display a dialog, I get a crash in Qt Core on a dynamic_cast. This line is enclosed in a check for RTTI. Since Qt 6.6 seems to be built with RTTI enabled and my code is built with RTTI disabled, it throws an exception.
As temporary fix, I reenabled the RTTI in my project.