Skip to content

Commit

Permalink
MinGW64 memset fix (#115)
Browse files Browse the repository at this point in the history
  • Loading branch information
kadir014 committed Jan 14, 2024
1 parent 60ee314 commit f90164c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 16 deletions.
5 changes: 1 addition & 4 deletions example/ParallelSum.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,7 @@
#include <stdio.h>
#include <inttypes.h>
#include <assert.h>

#ifndef _WIN32
#include <string.h>
#endif
#include <string.h>

using namespace enki;

Expand Down
5 changes: 1 addition & 4 deletions example/TaskOverhead.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,7 @@
#include <inttypes.h>
#undef __STDC_FORMAT_MACROS
#include <assert.h>

#ifndef _WIN32
#include <string.h>
#endif
#include <string.h>

using namespace enki;

Expand Down
6 changes: 2 additions & 4 deletions example/TaskThroughput.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,8 @@
#include <stdio.h>
#include <inttypes.h>
#include <math.h>

#ifndef _WIN32
#include <string.h>
#endif
#include <cstring>
#include <string.h>

using namespace enki;

Expand Down
6 changes: 2 additions & 4 deletions example/TestAll.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,8 @@
#include <assert.h>
#include <vector>
#include <algorithm>

#ifndef _WIN32
#include <string.h>
#endif
#include <cstring>
#include <string.h>

using namespace enki;

Expand Down

0 comments on commit f90164c

Please sign in to comment.