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

@@ -26,7 +26,7 @@
#include <tstring.h>
#include <tdebug.h>
#include <bitset>
#include <math.h>
#include <cmath>
#include "mpcproperties.h"
#include "mpcfile.h"

View File

@@ -23,10 +23,11 @@
* http://www.mozilla.org/MPL/ *
***************************************************************************/
#include <cstdio>
#include <tbytevectorlist.h>
#include <tpropertymap.h>
#include <tdebug.h>
#include <stdio.h>
#include "chapterframe.h"

View File

@@ -23,15 +23,14 @@
* http://www.mozilla.org/MPL/ *
***************************************************************************/
#include <cstdlib>
#include <cstdio>
#include <cstring>
#include "tbytevectorstream.h"
#include "tstring.h"
#include "tdebug.h"
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
using namespace Strawberry_TagLib::TagLib;
class ByteVectorStream::ByteVectorStreamPrivate {

View File

@@ -33,7 +33,7 @@
# include <windows.h>
# include <io.h>
#else
# include <stdio.h>
# include <cstdio>
# include <unistd.h>
#endif

View File

@@ -30,7 +30,7 @@
#ifdef _WIN32
# include <windows.h>
#else
# include <stdio.h>
# include <cstdio>
# include <unistd.h>
#endif

View File

@@ -35,7 +35,7 @@
# endif
# if defined(HAVE_MSC_BYTESWAP)
# include <stdlib.h>
# include <cstdlib>
# elif defined(HAVE_GLIBC_BYTESWAP)
# include <byteswap.h>
# elif defined(HAVE_MAC_BYTESWAP)

View File

@@ -29,7 +29,7 @@
#include "modfileprivate.h"
#include "tpropertymap.h"
#include <string.h>
#include <cstring>
#include <algorithm>
using namespace Strawberry_TagLib::TagLib;