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
#pragma warning (disable:4267)
#pragma warning (disable:4244)
#pragma warning (disable:4101)
#define _CRT_NONSTDC_NO_DEPRECATE
#endif

View File

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

View File

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