Skip to content

Commit

Permalink
Attempt to work around MSVC ICE
Browse files Browse the repository at this point in the history
  • Loading branch information
Epixu committed Feb 7, 2025
1 parent 135c522 commit 4cc81bc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions test/Main.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ using namespace Langulus;
(Vector<wchar_t, S>)

#define VECTORS_ALL(S) \
VECTORS_SIGNED(S), \
VECTORS_UNSIGNED(S)
VECTORS_SIGNED(S)
//, VECTORS_UNSIGNED(S)

using uint = unsigned int;
template<class T>
Expand Down
8 changes: 4 additions & 4 deletions test/Multiply/TestMul-VV.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ TEMPLATE_TEST_CASE("Vector * Vector", "[multiply]"
, VECTORS_ALL(1)
, VECTORS_ALL(2)
, VECTORS_ALL(3)
, VECTORS_ALL(4)*/
, VECTORS_ALL(5)
/*, VECTORS_ALL(8)
, VECTORS_ALL(9)
, VECTORS_ALL(4)
, VECTORS_ALL(5)*/
, VECTORS_ALL(8)
/*, VECTORS_ALL(9)
, VECTORS_ALL(16)
, VECTORS_ALL(17)
, VECTORS_ALL(32)
Expand Down

0 comments on commit 4cc81bc

Please sign in to comment.