Skip to content

Commit

Permalink
Add one more define check for Windows ... just in case.
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan P. C. McQuen <ryanpcmcquen@member.fsf.org>
  • Loading branch information
Ryan P. C. McQuen committed Feb 28, 2020
1 parent e6fb6e0 commit 1996975
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions line_count.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
cloc|github.com/AlDanial/cloc v 1.84 T=0.50 s (14.0 files/s, 2680.0 lines/s)
--- | ---

Language|files|blank|comment|code
:-------|-------:|-------:|-------:|-------:
C/C++ Header|6|206|142|973
C|1|5|0|14
--------|--------|--------|--------|--------
SUM:|7|211|142|987
cloc|github.com/AlDanial/cloc v 1.84 T=0.02 s (445.1 files/s, 85208.7 lines/s)
--- | ---

Language|files|blank|comment|code
:-------|-------:|-------:|-------:|-------:
C/C++ Header|6|206|142|973
C|1|5|0|14
--------|--------|--------|--------|--------
SUM:|7|211|142|987
2 changes: 1 addition & 1 deletion source/utilities.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#include <sys/stat.h>
#include <time.h>

#if defined(_WIN64) || defined(_WIN32) || defined(__WIN32__) || defined(__WINRT__)
#if defined(_WIN64) || defined(_WIN32) || defined(WIN32) || defined(__WIN32__) || defined(__WINRT__)
#define PLATFORM_IS_WINDOWS
#endif

Expand Down

0 comments on commit 1996975

Please sign in to comment.