From d1575e1285224a575e5a2ba345bcfc85c3344cf8 Mon Sep 17 00:00:00 2001 From: Lautis Sun Date: Tue, 19 Jul 2016 10:03:45 +0800 Subject: Replace & with && in line 36&40 Should look good --- tinydir.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tinydir.h b/tinydir.h index d99ced2..0a17736 100644 --- a/tinydir.h +++ b/tinydir.h @@ -33,11 +33,11 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. extern "C" { #endif -#if ((defined _UNICODE) & !(defined UNICODE)) +#if ((defined _UNICODE) && !(defined UNICODE)) #define UNICODE #endif -#if ((defined UNICODE) & !(defined _UNICODE)) +#if ((defined UNICODE) && !(defined _UNICODE)) #define _UNICODE #endif -- cgit v1.2.3