Skip to content

Commit 9ffd4c7

Browse files
author
Eddie
committed
.h, again
1 parent 82398ef commit 9ffd4c7

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

inc/zoo/algorithm/quicksort.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@
77

88
#include <array> // for temporary storage
99
#include <stdexcept>
10+
11+
#ifdef _MSC_VER
1012
#include <iso646.h>
13+
#endif
1114

1215
namespace zoo {
1316

inc/zoo/swar/SWAR.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66

77
#include <type_traits>
88

9-
#include <ciso646>
9+
#ifdef _MSC_VER
10+
#include <iso646.h>
11+
#endif
1012

1113
namespace zoo { namespace swar {
1214

inc/zoo/traits/is_container.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#include <type_traits>
66

77
#ifdef _MSC_VER
8-
#include <ciso646>
8+
#include <iso646.h>
99
#endif
1010

1111
#endif

0 commit comments

Comments
 (0)