blob: 802f17f8b8f0f94c458e7534f998af0d9df47f4c (
plain)
1
2
3
4
5
6
7
8
9
|
#pragma once
#ifdef _MSC_VER
// disable the unnecessary warning about multi-inheritance
#pragma warning(disable : 4250)
#endif
#define _CRT_SECURE_NO_WARNINGS
#define _SILENCE_CXX17_CODECVT_HEADER_DEPRECATION_WARNING
|