Skip to content

Commit d327bd0

Browse files
committed
Fix MSVC compile error
1 parent eaab112 commit d327bd0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vapid/soa.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,8 +219,8 @@ namespace vapid {
219219
reset_sort_reference();
220220

221221
auto comparator_wrapper = [=](size_t a, size_t b) {
222-
return comparator(view<I...>(a),
223-
view<I...>(b));
222+
return comparator(this->view<I...>(a),
223+
this->view<I...>(b));
224224
};
225225

226226
std::stable_sort(sort_order_reference_.begin(),

0 commit comments

Comments
 (0)