fix: typo in SignalVector::operator[] member access (#5556)
This commit is contained in:
@@ -155,7 +155,7 @@ public:
|
||||
decltype(auto) operator[](size_t index)
|
||||
{
|
||||
assertInGuiThread();
|
||||
return this->items[index];
|
||||
return this->items_[index];
|
||||
}
|
||||
|
||||
auto empty()
|
||||
|
||||
Reference in New Issue
Block a user