Make it possible to include wx/base64.h as the first header

Include wx/defs.h before testing for wxUSE_BASE64, otherwise the test would
always fail if wx/base64.h is the first wx header to be included.
This commit is contained in:
Vadim Zeitlin 2016-02-23 17:11:27 +01:00
parent c2c2b4a7e0
commit 4d33750137

View File

@ -9,6 +9,8 @@
#ifndef _WX_BASE64_H_
#define _WX_BASE64_H_
#include "wx/defs.h"
#if wxUSE_BASE64
#include "wx/string.h"