Skip to content

Commit 89f263f

Browse files
PatTheMavRytoEX
authored andcommitted
forms: Fix issue with Qt 6.8.3 and Clang 21
Clang 21 enabled built-in support for "__yield" but requires including "arm_acle.h" to work. Qt's "qyieldcpu" header will emit code using the function without including the declaration and thus fail compilation A fix for Qt is pending, but AppleClang 21 is shipped since 2026-03-24 with Xcode 26.4 and thus the project cannot be compiled after a toolchain update otherwise.
1 parent 68bebc2 commit 89f263f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/forms/SettingsDialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ You should have received a copy of the GNU General Public License along
1717
with this program. If not, see <https://www.gnu.org/licenses/>
1818
*/
1919

20-
#include <QtWidgets/QMessageBox>
20+
#include <QMessageBox>
2121
#include <QDateTime>
2222
#include <QTime>
2323
#include <obs-module.h>

0 commit comments

Comments
 (0)