mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-07 15:08:22 +01:00
Wrap #pragma warning with #ifdef _MSC_VER .. #endif
This commit is contained in:
parent
0e8b626d87
commit
276873bf70
6 changed files with 19 additions and 1 deletions
|
|
@ -4,7 +4,9 @@
|
|||
|
||||
#define CITRA_IGNORE_EXIT(x)
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning(disable : 4244)
|
||||
#endif
|
||||
|
||||
#include <algorithm>
|
||||
#include <cstdio>
|
||||
|
|
|
|||
|
|
@ -2,7 +2,9 @@
|
|||
// Licensed under GPLv2 or any later version
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning(disable : 4244)
|
||||
#endif
|
||||
|
||||
#include <algorithm>
|
||||
#include "common/assert.h"
|
||||
|
|
|
|||
|
|
@ -20,7 +20,9 @@
|
|||
|
||||
/* Note: this file handles interface with arm core and vfp registers */
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning(disable : 4100)
|
||||
#endif
|
||||
|
||||
#include "common/assert.h"
|
||||
//#include "common/common_funcs.h"
|
||||
|
|
|
|||
|
|
@ -51,7 +51,9 @@
|
|||
* ===========================================================================
|
||||
*/
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning(disable : 4100 4244 4245)
|
||||
#endif
|
||||
|
||||
#include <algorithm>
|
||||
//#include "common/logging/log.h"
|
||||
|
|
|
|||
|
|
@ -51,7 +51,9 @@
|
|||
* ===========================================================================
|
||||
*/
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning(disable : 4100 4244 4245)
|
||||
#endif
|
||||
|
||||
#include <algorithm>
|
||||
#include <cinttypes>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue