diff --git a/3party/expat/expat_impl.h b/3party/expat/expat_impl.h index 3a6454a1af..b0a8959983 100644 --- a/3party/expat/expat_impl.h +++ b/3party/expat/expat_impl.h @@ -303,12 +303,15 @@ public: // @cmember Enable/Disable unknown encoding handler +// disabled because it causes compile errors with gcc 7 +#if 0 void EnableUnknownEncodingHandler (bool fEnable = true) { assert (m_p != NULL); XML_SetUnknownEncodingHandler (m_p, fEnable ? UnknownEncodingHandler : NULL); } +#endif // @cmember Enable/Disable start namespace handler