Remove redundant wxUSE_XXX checks from wx/filesys.h

These checks are already performed in wx/chkconf.h and don't need to be
redone here, especially incorrectly (testing for "!wxUSE_FILESYSTEM"
inside "#if wxUSE_FILESYSTEM" is useless).
This commit is contained in:
Vadim Zeitlin 2019-02-05 21:03:27 +01:00
parent 5ec25fe755
commit 9a9ff29098

View File

@ -13,14 +13,6 @@
#if wxUSE_FILESYSTEM
#if !wxUSE_STREAMS
#error You cannot compile virtual file systems without wxUSE_STREAMS
#endif
#if wxUSE_HTML && !wxUSE_FILESYSTEM
#error You cannot compile wxHTML without virtual file systems
#endif
#include "wx/stream.h"
#include "wx/datetime.h"
#include "wx/filename.h"