forked from organicmaps/organicmaps
Fix expat_impl.h.
Missing argument to XML_SetUnknownEncodingHandler (compare to lib/expat.h) causes compile error. Comment out as the fix would be more complex than appropriate for a 3party library copy. For some reasons e.g. gcc 6.3 seems to show no issue.
This commit is contained in:
parent
54136f3355
commit
238e12ba4b
1 changed files with 3 additions and 0 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue