Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/cxong/tinydir.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLautis Sun <lautis0503@gmail.com>2016-07-19 05:03:45 +0300
committerGitHub <noreply@github.com>2016-07-19 05:03:45 +0300
commitd1575e1285224a575e5a2ba345bcfc85c3344cf8 (patch)
tree1789a753f9fdeaf845f9ef943a08daea6c806bba
parent4b25fece7efcf3880b3a9746a4bf90c32667a9a4 (diff)
Replace & with && in line 36&40
Should look good
-rw-r--r--tinydir.h4
1 files 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