Fix build break for no-RTTI flavor (e.g. Edge Installer and other small-sized executables)

This commit is contained in:
Max Golovanov 2019-10-24 11:46:19 -07:00
Родитель e55e20bcb4
Коммит fc4c05edf7
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -24,7 +24,9 @@ __inline static std::string demangle(const char* name) {
#define TYPENAME(t) typeid(t).name()
#define HAS_RTTI 1
#else
#define __typename(t) "" /* Unknown */
/* No RTTI support */
#define TYPENAME(t) ""
#define HAS_RTTI 0
#endif
#endif