Skip to content

Commit 3525e02

Browse files
committed
Add missing implementation of sass_importer_get_list_entry.
1 parent f68eb51 commit 3525e02

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

sass_functions.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ extern "C" {
8888
return (Sass_Importer_List) calloc(length + 1, sizeof(Sass_Importer_Entry));
8989
}
9090

91+
Sass_Importer_Entry ADDCALL sass_importer_get_list_entry(Sass_Importer_List list, size_t idx) { return list[idx]; }
9192
void ADDCALL sass_importer_set_list_entry(Sass_Importer_List list, size_t idx, Sass_Importer_Entry cb) { list[idx] = cb; }
9293

9394
// Creator for sass custom importer return argument list

0 commit comments

Comments
 (0)