Skip to content

Commit 0dbb4ca

Browse files
authored
Fix resize() compile error (#10)
1 parent a15a659 commit 0dbb4ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vapid/soa.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ namespace vapid {
181181
}
182182

183183
void resize(size_t size) {
184-
return resize_impl(std::index_sequence_for<Ts...>{}, size);
184+
return resize_impl(std::index_sequence_for<Ts...>{}, data_, size);
185185
}
186186

187187
void reserve(size_t size) {

0 commit comments

Comments
 (0)