Skip to content

Commit

Permalink
Merge pull request #4 from toge/support-clang
Browse files Browse the repository at this point in the history
Please support clang
  • Loading branch information
Thermadiag authored Sep 17, 2024
2 parents 1f46b36 + 3ccdf67 commit 082e4f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion seq/type_traits.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

namespace std
{
#if defined(__GNUG__) && (__GNUC__ < 5)
#if !defined(__clang__) && defined(__GNUG__) && (__GNUC__ < 5)

// Reimplement the wheel for older gcc

Expand Down

0 comments on commit 082e4f7

Please sign in to comment.