From f9cd845a9119e0abf450a91d8802f5c1822dd638 Mon Sep 17 00:00:00 2001 From: Manuel Nickschas Date: Mon, 10 Sep 2018 00:02:03 +0200 Subject: [PATCH] modernize: Use C++ versions of system headers System headers ending on .h are deprecated; use the c* version instead. --- src/client/client.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/client/client.cpp b/src/client/client.cpp index 2c1898d0..82e7fd42 100644 --- a/src/client/client.cpp +++ b/src/client/client.cpp @@ -52,8 +52,8 @@ #include "util.h" #include "clientauthhandler.h" -#include -#include +#include +#include Client::Client(std::unique_ptr ui, QObject *parent) : QObject(parent), Singleton(this), -- 2.20.1