wm: mastermind-qt

Download patch

ref: 4c114d13e643923c5c74a88aafaf882d63987464
parent: 1ce5e3ac3952886bec87101898ed1490148008a1
author: mkf <mkf@hp.lan>
date: Thu Apr 27 06:32:46 EDT 2023

it seems pow needs <cmath> on some platforms.

--- a/mainwindow.cpp
+++ b/mainwindow.cpp
@@ -1,6 +1,7 @@
 #include "mainwindow.h"
 #include "ui_mainwindow.h"
 
+#include <cmath> /* pow() */
 #include <QMessageBox> /* errors, infos */
 #include <QInputDialog> /* getting len */
 #include <QApplication> /* seems to be needed in all qt programs */