Merge pull request #104976 from Ivorforce/no-inheritance-list

Remove unused `get_inheritance_list_static` from `GDCLASS`.
This commit is contained in:
Thaddeus Crews
2025-04-03 16:50:20 -05:00
2 changed files with 0 additions and 15 deletions

View File

@@ -143,15 +143,6 @@ TEST_CASE("[Object] Core getters") {
CHECK_MESSAGE(
object.get_save_class() == "Object",
"The returned save class should match the expected value.");
List<String> inheritance_list;
object.get_inheritance_list_static(&inheritance_list);
CHECK_MESSAGE(
inheritance_list.size() == 1,
"The inheritance list should consist of Object only");
CHECK_MESSAGE(
inheritance_list.front()->get() == "Object",
"The inheritance list should consist of Object only");
}
TEST_CASE("[Object] Metadata") {