Fix warning in RGBController_GigabyteRGBFusion2USB.h

This commit is contained in:
Adam Honse 2022-09-25 00:11:44 -05:00
parent b75e3af5dc
commit dff6b0e494

View file

@ -25,7 +25,7 @@ static std::map<V, K> reverse_map(const std::map<K, V>& map)
{
std::map<V, K> reversed_map;
for(const std::pair<K, V>& entry : map)
for(const std::pair<K, V> entry : map)
{
reversed_map[entry.second] = entry.first;
}