Stop gcc with -Wswitch complaining about missing NONE
@@ -81,6 +81,10 @@ bool Variant::GetInto(T& value) const
case VOIDPTR:
return TypeConverter< void*, T >::Convert((void*)data, value);
break;
+
+ case NONE:
+ break;
}
return false;