aboutsummaryrefslogtreecommitdiff
path: root/include/cru/common/PreConfig.hpp
blob: 6011dc545806315d9766b16f3bd3536276993f4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

#ifdef _MSC_VER
// disable the unnecessary warning about multi-inheritance
#pragma warning(disable : 4250)
// disable dll export template issue warning
#pragma warning(disable : 4251)
#endif

#ifdef CRU_PLATFORM_WINDOWS
#define _CRT_SECURE_NO_WARNINGS
#endif