Fixed compilation with latest MSVC version. Needs to explicitly include <typeinfo> header now.

This commit is contained in:
LoRd_MuldeR 2020-05-20 22:17:38 +02:00
parent 9aa6c39d93
commit bfa0c98484
2 changed files with 2 additions and 1 deletions

View File

@ -35,7 +35,7 @@
#define VER_LAMEXP_MINOR_LO 9
#define VER_LAMEXP_TYPE Alpha
#define VER_LAMEXP_PATCH 4
#define VER_LAMEXP_BUILD 2264
#define VER_LAMEXP_BUILD 2270
#define VER_LAMEXP_CONFG 2188
///////////////////////////////////////////////////////////////////////////////

View File

@ -58,6 +58,7 @@
//CRT
#include <math.h>
#include <typeinfo>
//Helper macros
#define LINK(URL) QString("<a href=\"%1\">%2</a>").arg(URL).arg(QString(URL).replace("-", "&minus;"))