mirror of
https://github.com/bkaradzic/bgfx.git
synced 2026-02-17 20:52:36 +01:00
More cleanup.
This commit is contained in:
15
3rdparty/freetype/freetype.h
vendored
15
3rdparty/freetype/freetype.h
vendored
@@ -1,4 +1,15 @@
|
||||
#pragma once
|
||||
|
||||
#if defined(_MSC_VER)
|
||||
# pragma warning(push)
|
||||
# pragma warning(disable: 4100) // DISABLE warning C4100: '' : unreferenced formal parameter
|
||||
# pragma warning(disable: 4146) // DISABLE warning C4146: unary minus operator applied to unsigned type, result still unsigned
|
||||
# pragma warning(disable: 4700) // DISABLE warning C4700: uninitialized local variable 'temp' used
|
||||
# pragma warning(disable: 4701) // DISABLE warning C4701: potentially uninitialized local variable '' used
|
||||
#elif defined(__GNUC__)
|
||||
# pragma GCC system_header
|
||||
#endif // defined(__GNUC__)
|
||||
|
||||
/***************************************************************************/
|
||||
/* */
|
||||
/* ftsystem.c */
|
||||
@@ -117418,3 +117429,7 @@ FT_END_HEADER
|
||||
(FT_Module_Requester) af_get_interface )
|
||||
/* END */
|
||||
/* END */
|
||||
|
||||
#if defined(_MSC_VER)
|
||||
# pragma warning(pop)
|
||||
#endif // defined(_MSC_VER)
|
||||
|
||||
Reference in New Issue
Block a user