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 3881fde commit a9be937
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions test/Main.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,14 +69,13 @@ using namespace Langulus;
(Vector<::std::int64_t, S>), \
VECTORS_REAL(S)

#define VECTORS_UNSIGNED(S) (Vector<Byte, S>)

/*(Vector<::std::uint8_t, S>), \
(Vector<::std::uint16_t, S>),\
(Vector<::std::uint32_t, S>),\
#define VECTORS_UNSIGNED(S) \
(Vector<::std::uint8_t, S>), \
(Vector<::std::uint16_t, S>)
/*(Vector<::std::uint32_t, S>),\
(Vector<::std::uint64_t, S>),\
(Vector<Byte, S>) */
/*(Vector<char8_t, S>), \
(Vector<Byte, S>)
(Vector<char8_t, S>), \
(Vector<char16_t, S>), \
(Vector<char32_t, S>), \
(Vector<wchar_t, S>)*/
Expand Down

0 comments on commit a9be937

Please sign in to comment.