(Windows) Fixed an MSVC compiler warning.

This commit is contained in:
Leon Styhre 2023-02-11 12:36:33 +01:00
parent 3cb0b6a644
commit b1dd2dd176

View file

@ -156,7 +156,7 @@ public:
return GuiComponent::input(config, input);
}
const int getNumEntries() { return mEntries.size(); }
const int getNumEntries() { return static_cast<int>(mEntries.size()); }
std::vector<T> getSelectedObjects()
{