Skip to content

Commit a963050

Browse files
committed
Fix to the StrConverter
Went to fast and accidentally broke the build
1 parent c436d4e commit a963050

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

generate/templates/manual/src/str_array_converter.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ git_strarray *StrArrayConverter::Convert(Handle<v8::Value> val) {
2424
}
2525
}
2626

27-
static git_strarray * StrArrayConverter::AllocStrArray(const size_t count) {
27+
git_strarray * StrArrayConverter::AllocStrArray(const size_t count) {
2828
const size_t size = sizeof(git_strarray) + (sizeof(char*) * count);
2929
uint8_t* memory = reinterpret_cast<uint8_t*>(malloc(size));
3030
git_strarray *result = reinterpret_cast<git_strarray *>(memory);

0 commit comments

Comments
 (0)