Updated the ConstantPoolParser() signature

This commit is contained in:
calcium 2024-08-19 20:02:37 -04:00
parent b1f95ef1b4
commit 59740ddeaa

View File

@ -47,7 +47,7 @@ struct ConstantUtf8Info : ConstantPoolInfo
{
ConstantPoolTags::Tags tag;
u2 length;
unsigned char* bytes;
unsigned char *bytes;
// std::vector<unsigned char> bytes;
};
@ -84,7 +84,7 @@ struct ConstantNameAndTypeInfo : ConstantPoolInfo
u2 descriptor_index;
};
void ConstantPoolParser(ConstantPool &p, JavaClassFormat &jc);
void ConstantPoolParser(ConstantPoolTags::Tags t, JavaClassFormat &jc);
}
#endif