This commit is contained in:
blueloveTH 2022-12-04 17:32:24 +08:00
parent ada0131317
commit 248a49ffb4
3 changed files with 4 additions and 3 deletions

View File

@ -3,6 +3,7 @@
#ifdef _MSC_VER #ifdef _MSC_VER
#pragma warning (disable:4267) #pragma warning (disable:4267)
#pragma warning (disable:4244) #pragma warning (disable:4244)
#pragma warning (disable:4101)
#define _CRT_NONSTDC_NO_DEPRECATE #define _CRT_NONSTDC_NO_DEPRECATE
#endif #endif

View File

@ -5,8 +5,8 @@
typedef int64_t _Int; typedef int64_t _Int;
typedef double _Float; typedef double _Float;
class CodeObject; struct CodeObject;
class BasePointer; struct BasePointer;
class VM; class VM;
class Frame; class Frame;

View File

@ -3,7 +3,7 @@
#include "__stl__.h" #include "__stl__.h"
#include "str.h" #include "str.h"
class PyObject; struct PyObject;
typedef std::shared_ptr<PyObject> PyVar; typedef std::shared_ptr<PyObject> PyVar;
typedef PyVar PyVarOrNull; typedef PyVar PyVarOrNull;