}
else if ( wxANY_VALUE_TYPE_CHECK_TYPE(dstType, wxString) )
{
- wxString s = wxString::Format(wxS("%.14g"), value);
+ wxString s = wxString::FromCDouble(value, 14);
wxAnyValueTypeImpl<wxString>::SetValue(s, dst);
}
else
class wxAnyNullValue
{
-private:
+protected:
+ // this field is unused, but can't be private to avoid Clang's
+ // "Private field 'm_dummy' is not used" warning
void* m_dummy;
};