We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d565ea commit a680ca3Copy full SHA for a680ca3
test/algorithm.cpp
@@ -23,13 +23,13 @@
23
#define _SCL_SECURE_NO_WARNINGS
24
#endif
25
26
-#ifdef _MSC_VER
+#if defined(_MSC_VER) && !defined(__clang__)
27
// counting_iterator generates a warning about truncating an integer
28
#pragma warning(push)
29
#pragma warning(disable : 4244)
30
31
#include <boost/iterator/counting_iterator.hpp>
32
33
template ::boost::counting_iterator<int>;
34
#pragma warning(pop)
35
0 commit comments