fix: typo in SignalVector::operator[] member access (#5556)

This commit is contained in:
pastalian
2024-08-24 17:15:03 +09:00
committed by GitHub
parent f42bb73123
commit f36c73019d
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -155,7 +155,7 @@ public:
decltype(auto) operator[](size_t index)
{
assertInGuiThread();
return this->items[index];
return this->items_[index];
}
auto empty()