Skip to content

Commit

Permalink
[issue-24] test failure for new clang-win ci job
Browse files Browse the repository at this point in the history
  • Loading branch information
jeking3 committed Apr 24, 2022
1 parent 63b7ff8 commit e2dd909
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ environment:
B2_TOOLSET: msvc-14.1

- FLAVOR: clang-cl
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2022
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
B2_ADDRESS_MODEL: 64
B2_CXXSTD: 11,14,17
B2_TOOLSET: clang-win
Expand Down
5 changes: 3 additions & 2 deletions test/stl_concept_covering.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -548,9 +548,10 @@ main()
unary_predicate_archetype<PredArg> pred(dummy_cons);
bi = std::partition(bi, bi, pred);
}
#if !defined(BOOST_MSVC) && !defined(BOOST_EMBTC)
#if !defined(BOOST_MSVC) && !defined(BOOST_EMBTC) && !defined(_MSC_VER)
{
// fails on MSVC
// fails on MSVC and clang-win; stl headers come from Visual Studio and
// they attempt to reverse the iterator
typedef null_archetype<> PredArg;
typedef sgi_assignable_archetype<convertible_to_archetype<PredArg> > FT;
mutable_forward_iterator_archetype<FT> fi;
Expand Down

0 comments on commit e2dd909

Please sign in to comment.