Browse Source

Fix compile warning:

warning: enumeration value 'Unknown' not handled in switch [-Wswitch]
adaptive-webui-19844
Chocobo1 9 years ago
parent
commit
fadb208299
  1. 2
      src/core/net/private/geoipdatabase.cpp

2
src/core/net/private/geoipdatabase.cpp

@ -392,6 +392,8 @@ QVariant GeoIPDatabase::readDataField(quint32 &offset) const @@ -392,6 +392,8 @@ QVariant GeoIPDatabase::readDataField(quint32 &offset) const
else
qDebug() << "* Invalid field size for type: Float";
break;
default:
qDebug() << "* Unsupported data type: Unknown";
}
if (!usePointer)

Loading…
Cancel
Save