This commit is contained in:
blueloveTH 2023-06-27 02:46:42 +08:00
parent 53c84abe56
commit 284148f1ab

View File

@ -111,6 +111,7 @@ struct Type {
};
#define PK_LAMBDA(x) ([](VM* vm, ArgsView args) { return x; })
#define PK_VAR_LAMBDA(x) ([](VM* vm, ArgsView args) { return VAR(x); })
#ifdef POCKETPY_H
#define FATAL_ERROR() throw std::runtime_error( "L" + std::to_string(__LINE__) + " FATAL_ERROR()!");