This commit is contained in:
blueloveTH 2024-03-02 16:47:12 +08:00
parent 0fd2c695bf
commit a51eb5a641
2 changed files with 3 additions and 3 deletions

File diff suppressed because one or more lines are too long

View File

@ -71,9 +71,9 @@ struct CodeObject {
std::vector<int> iblocks; // block index for each bytecode std::vector<int> iblocks; // block index for each bytecode
std::vector<LineInfo> lines; std::vector<LineInfo> lines;
small_vector_no_copy_and_move<PyObject*, 8> consts; small_vector_no_copy_and_move<PyObject*, 8> consts; // constants
small_vector_no_copy_and_move<StrName, 8> varnames; // local variables
pod_vector<StrName> varnames; // local variables
NameDictInt varnames_inv; NameDictInt varnames_inv;
std::vector<CodeBlock> blocks; std::vector<CodeBlock> blocks;
NameDictInt labels; NameDictInt labels;