@@ -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
@@ -5,8 +5,8 @@
typedef int64_t _Int;
typedef double _Float;
-class CodeObject;
-class BasePointer;
+struct CodeObject;
+struct BasePointer;
class VM;
class Frame;
@@ -3,7 +3,7 @@
#include "__stl__.h"
#include "str.h"
-class PyObject;
+struct PyObject;
typedef std::shared_ptr<PyObject> PyVar;
typedef PyVar PyVarOrNull;