Replace use of deprecated C++ headers

This commit is contained in:
Jonas Kvinge
2020-06-14 23:54:18 +02:00
parent ad49d38e46
commit 13b60351a6
38 changed files with 56 additions and 56 deletions

View File

@@ -4,7 +4,7 @@
// From Chromium src/base/macros.h
#include <stddef.h> // For size_t.
#include <cstddef> // For size_t.
// The arraysize(arr) macro returns the # of elements in an array arr.
// The expression is a compile-time constant, and therefore can be

View File

@@ -18,9 +18,9 @@
#include "config.h"
#include <stdio.h>
#include <stdlib.h>
#include <string>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <iostream>
#include <memory>
#include <cxxabi.h>

View File

@@ -18,7 +18,7 @@
#ifndef WORKERPOOL_H
#define WORKERPOOL_H
#include <stddef.h>
#include <cstddef>
#include <QtGlobal>
#include <QObject>