summary refs log tree commit diff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2019-12-23 05:22:03 +0100
committerNicolas Werner <nicolas.werner@hotmail.de>2019-12-23 05:22:03 +0100
commit3bbd03478176825dd500d9019d206e97a8f43b03 (patch)
tree8f00089247cb3fd08d7b9035d588e18cce21de71 /src/main.cpp
parentFix appveyor deps/cmakelist path (diff)
downloadnheko-3bbd03478176825dd500d9019d206e97a8f43b03.tar.xz
Fix transitive dependencies on iostream
Diffstat (limited to '')
-rw-r--r--src/main.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/main.cpp b/src/main.cpp

index ec96f0ec..37b38c1b 100644 --- a/src/main.cpp +++ b/src/main.cpp
@@ -15,6 +15,8 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#include <iostream> + #include <QApplication> #include <QCommandLineParser> #include <QDesktopWidget> @@ -43,15 +45,15 @@ #include "emoji/MacHelper.h" #endif -#if defined(Q_OS_LINUX) -#include <boost/stacktrace.hpp> -#include <csignal> - #ifdef QML_DEBUGGING #include <QQmlDebuggingEnabler> QQmlDebuggingEnabler enabler; #endif +#if defined(Q_OS_LINUX) +#include <boost/stacktrace.hpp> +#include <csignal> + void stacktraceHandler(int signum) {